The fluid grid system uses percents instead of pixels for column widths. It has the same responsive capabilities as our fixed grid system, ensuring proper proportions for key screen resolutions and devices.
-Make any row "fluid" by changing .row
to .row-fluid
. The column classes stay the exact same, making it easy to flip between fixed and fluid grids.
-<div class="row-fluid"> - <div class="span4">...</div> - <div class="span8">...</div> -</div> -- -
Operates the same way as the fixed grid system offsetting: add .offset*
to any column to offset by that many columns.
-<div class="row-fluid"> - <div class="span4">...</div> - <div class="span4 offset2">...</div> -</div> -- -
Nesting with fluid grids is a bit different: the number of nested columns should not match the parent's number of columns. Instead, each level of nested columns are reset because each row takes up 100% of the parent column.
--<div class="row-fluid"> - <div class="span12"> - Fluid 12 - <div class="row-fluid"> - <div class="span6">Fluid 6</div> - <div class="span6">Fluid 6</div> ->>>>>>> 2.1.2-wip - </div> - </div> -</div> --
{{_i}}The fluid grid system uses percents instead of pixels for column widths. It has the same responsive capabilities as our fixed grid system, ensuring proper proportions for key screen resolutions and devices.{{/i}}
-{{_i}}Make any row "fluid" by changing .row
to .row-fluid
. The column classes stay the exact same, making it easy to flip between fixed and fluid grids.{{/i}}
-<div class="row-fluid"> - <div class="span4">...</div> - <div class="span8">...</div> -</div> -- -
{{_i}}Operates the same way as the fixed grid system offsetting: add .offset*
to any column to offset by that many columns.{{/i}}
-<div class="row-fluid"> - <div class="span4">...</div> - <div class="span4 offset2">...</div> -</div> -- -
{{_i}}Nesting with fluid grids is a bit different: the number of nested columns should not match the parent's number of columns. Instead, each level of nested columns are reset because each row takes up 100% of the parent column.{{/i}}
--<div class="row-fluid"> - <div class="span12"> - {{_i}}Fluid 12{{/i}} - <div class="row-fluid"> - <div class="span6">{{_i}}Fluid 6{{/i}}</div> - <div class="span6">{{_i}}Fluid 6{{/i}}</div> ->>>>>>> 2.1.2-wip - </div> - </div> -</div> --