]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
fix #9454: add grid docs about responsive column clearing
authorMark Otto <otto@github.com>
Thu, 15 Aug 2013 06:11:38 +0000 (23:11 -0700)
committerMark Otto <otto@github.com>
Thu, 15 Aug 2013 06:11:38 +0000 (23:11 -0700)
_includes/nav-css.html
css.html

index 2024883708dc3508be5bda09276e2d8ee2407434..d4acb7bc53994eedcda626b9058862dabea10ff6 100644 (file)
@@ -20,6 +20,7 @@
     <li><a href="#grid-example-basic">Ex: Stacked-to-horizonal</a></li>
     <li><a href="#grid-example-mixed">Ex: Mobile-desktop</a></li>
     <li><a href="#grid-example-mixed-complete">Ex: Mobile, tablet, desktop</a></li>
+    <li><a href="#grid-responsive-clearing">Responsive column clearing</a></li>
     <li><a href="#grid-offsetting">Offset columns</a></li>
     <li><a href="#grid-nesting">Nested columns</a></li>
     <li><a href="#grid-column-ordering">Column ordering</a></li>
index b4da415c15d4dcdaa02dff751674550138ab60b5..a2cfd5f74a4f50ae8d4e50c9b62817173cad614d 100644 (file)
--- a/css.html
+++ b/css.html
@@ -326,6 +326,21 @@ base_url: "../"
       <p><a class="btn btn-danger" target="_blank" href="http://examples.getbootstrap.com/grid/">More grid examples</a></p>
     </div>
 
+    <h3 id="grid-responsive-clearing">Responsive column clearing</h3>
+    <p>With the four tiers of grids available you're bound to run into issues where, at certain breakpoints, your columns don't clear quite right as one is taller than the other. To fix that, use a combination of a <code>.clearfix</code> and our <a href="../css#responsive-utilities">responsive utility classes</a>.</p>
+{% highlight html %}
+<div class="row">
+  <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
+  <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
+
+  <!-- Add the extra clearfix for only the required viewport -->
+  <div class="clearfix visible-xs"></div>
+
+  <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
+  <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
+</div>
+{% endhighlight %}
+
     <h3 id="grid-offsetting">Offsetting columns</h3>
     <p>Move columns to the right using <code>.col-md-offset-*</code> classes. These classes increase the left margin of a column by <code>*</code> columns. For example, <code>.col-md-offset-4</code> moves <code>.col-md-4</code> over four columns.</p>
     <div class="bs-docs-grid">