aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2013-09-04 00:54:03 -0700
committerChris Rebert <[email protected]>2013-09-04 00:54:03 -0700
commit4f7f1f6c6e90a2102b9fa47f3d5594909cf51630 (patch)
tree3b64cf96dfddc9853db355562162bbb500ab9c05
parent5773638329d5c3ce4fe6cde894e92bc865042744 (diff)
parent7c7c0e6139fd85ce174b869bffd14ccfee5b8d33 (diff)
downloadbootstrap-4f7f1f6c6e90a2102b9fa47f3d5594909cf51630.tar.xz
bootstrap-4f7f1f6c6e90a2102b9fa47f3d5594909cf51630.zip
Merge pull request #10423 from hustlzp/master
CSS docs - Grid section: two dots are missing before 'col-md-8'
-rw-r--r--css.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/css.html b/css.html
index 0e11346be..64540ad61 100644
--- 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>