diff options
| author | Mark Otto <[email protected]> | 2013-06-04 21:55:59 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-06-04 21:55:59 -0700 |
| commit | b1cc11cd98e3ab3707c6c39a80df458f277239ff (patch) | |
| tree | d3e02638ac25c93640e9ee88027c1015ea0bec75 /docs/css.html | |
| parent | 567b8b56319994dc0488de629b2dd2447be10115 (diff) | |
| download | bootstrap-b1cc11cd98e3ab3707c6c39a80df458f277239ff.tar.xz bootstrap-b1cc11cd98e3ab3707c6c39a80df458f277239ff.zip | |
reverse order of grid column examples for dual grid section
Diffstat (limited to 'docs/css.html')
| -rw-r--r-- | docs/css.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/css.html b/docs/css.html index ca10a731b..981626c60 100644 --- a/docs/css.html +++ b/docs/css.html @@ -197,15 +197,15 @@ lead: "Fundamental HTML elements styled and enhanced with extensible classes." <h3 id="grid-small">Small device grid</h3> <p>Use the small device grid classes, like <code>.col-sm-6</code>, to create columned layouts on phone and tablet devices (anything under 768px). Offsets, pushes, and pulls are not available with the small grid at this time.</p> <div class="row show-grid"> - <div class="col-lg-4 col-sm-6">4 cols, 6 small cols</div> - <div class="col-lg-4 col-sm-6">4 cols, 6 small cols</div> - <div class="col-lg-4 col-sm-12">4 cols, 12 small cols</div> + <div class="col-sm-6 col-lg-4">6 small cols, 4 large cols</div> + <div class="col-sm-6 col-lg-4">6 small cols, 4 large cols</div> + <div class="col-sm-12 col-lg-4">12 small cols, 4 large cols</div> </div> {% highlight html %} <div class="row"> - <div class="col-lg-4 col-sm-6">4 cols, 6 small cols</div> - <div class="col-lg-4 col-sm-6">4 cols, 6 small cols</div> - <div class="col-lg-4 col-sm-12">4 cols, 12 small cols</div> + <div class="col-sm-6 col-lg-4">6 small cols, 4 large cols</div> + <div class="col-sm-6 col-lg-4">6 small cols, 4 large cols</div> + <div class="col-sm-12 col-lg-4">12 small cols, 4 large cols</div> </div> {% endhighlight %} |
