Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Twitter Bootstrap: nested rows?

Twiter Bootstrap Question: Given the image below, how do I mark up the 3 red containers so that they are fluid and responsive? Can I define a container/row inside a span*? Not sure how to tackle such a layout.

enter image description here

like image 794
StackOverflowNewbie Avatar asked Nov 19 '12 22:11

StackOverflowNewbie


1 Answers

Sure you can nest rows inside other spans as deep as you like.

<div class="container-fluid">
    <div class="row-fluid">
        <div class="span9">
            <div class="span4"></div>
            <div class="span4"></div>
            <div class="span4"></div>
        </div>
        <div class="span3"></div>
    </div>
</div>

that should work for your 3 containers inside the 9 row.

like image 194
mila_frerichs Avatar answered Oct 01 '22 05:10

mila_frerichs