]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
CSS docs - Grid section: two dots are missing before 'col-md-8' 10423/head
authorZhipeng Liu <hustlzp@qq.com>
Wed, 4 Sep 2013 07:45:10 +0000 (15:45 +0800)
committerZhipeng Liu <hustlzp@qq.com>
Wed, 4 Sep 2013 07:45:10 +0000 (15:45 +0800)
Add the two missing docs

css.html

index 0e11346becb71ec65e3f8369d5b2f811e1101970..64540ad61ce65fdfa68aae8d646cfb4bd7a82356 100644 (file)
--- a/css.html
+++ b/css.html
@@ -239,7 +239,7 @@ base_url: "../"
     <p>Don't want your columns to simply stack in smaller devices? Use the extra small and medium device grid classes by adding <code>.col-xs-*</code> <code>.col-md-*</code> to your columns. See the example below for a better idea of how it all works.</p>
     <div class="bs-docs-grid">
       <div class="row show-grid">
-        <div class="col-xs-12 col-md-8">.col-xs-12 col-md-8</div>
+        <div class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</div>
         <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
       </div>
       <div class="row show-grid">
@@ -255,7 +255,7 @@ base_url: "../"
 {% highlight html %}
 <!-- Stack the columns on mobile by making one full-width and the other half-width -->
 <div class="row">
-  <div class="col-xs-12 col-md-8">.col-xs-12 col-md-8</div>
+  <div class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</div>
   <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
 </div>