Hi,

>From Bootstrap docs: "Fluid grids utilize nesting differently: each nested
level of columns should add up to 12 columns. This is because the fluid
grid uses percentages, not pixels, for setting widths."
First approach is the one you should follow:

    <div class="row-fluid">
      <div class="span12">
        <div class="row-fluid">
           <div class="span12">
             <div class="row-fluid">
               <div class="span4">
                  <div class="row-fluid">
                    <div class="span12">...</div>
                  </div>
               </div>
               <div class="span4">
                  <div class="row-fluid">
                    <div class="span6">...</div>
                    <div class="span6">...</div>
                  </div>
               </div>
               <div class="span4">
                  <div class="row-fluid">
                    <div class="span3">...</div>
                    <div class="span3">...</div>
                    <div class="span3">...</div>
                    <div class="span3">...</div>
                  </div>
                </div>
             </div>
           </div>
        </div>
       </div>
    </div>

Hope it helps.



On Wed, Mar 20, 2013 at 10:26 AM, Surya <[email protected]> wrote:

> <div class="row-fluid">
>     <div class="span12">
>         <div class="row-fluid"></div>
>         <div class="row-fluid"></div>
>     </div>
> </div>
>
> <div class="row-fluid">
>         <div class="row-fluid"></div>
>         <div class="row-fluid"></div>
> </div>
>
> Which one is the right way to do...
>
> As the nested structure goes deeper, I am getting confused..
>
> --
> You received this message because you are subscribed to the Google Groups
> "twitter-bootstrap" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>



-- 
Raul Matei
+40741351728

-- 
You received this message because you are subscribed to the Google Groups 
"twitter-bootstrap" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to