aboutsummaryrefslogtreecommitdiff
path: root/docs/layout
diff options
context:
space:
mode:
authorMarcus Molchany <[email protected]>2017-01-21 18:01:13 -0800
committerMark Otto <[email protected]>2017-01-21 18:01:13 -0800
commit3cb252570a0fb2507c7169427569f50a0a1cb031 (patch)
tree847271b8e42cb6b01fadc172d064ba2ff0b0fb42 /docs/layout
parent4fa7749442ea7ab609d1c8c25dc4ba750194e542 (diff)
downloadbootstrap-3cb252570a0fb2507c7169427569f50a0a1cb031.tar.xz
bootstrap-3cb252570a0fb2507c7169427569f50a0a1cb031.zip
Update grid layout docs (#21806)
Update Mix and match section with correct responsive classes for stacking cols.
Diffstat (limited to 'docs/layout')
-rw-r--r--docs/layout/grid.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/layout/grid.md b/docs/layout/grid.md
index 03deb2f55..58e51946e 100644
--- a/docs/layout/grid.md
+++ b/docs/layout/grid.md
@@ -293,7 +293,7 @@ Don't want your columns to simply stack in some grid tiers? Use a combination of
{% example html %}
<!-- Stack the columns on mobile by making one full-width and the other half-width -->
<div class="row">
- <div class="col col-md-8">.col .col-md-8</div>
+ <div class="col-12 col-md-8">.col-12 .col-md-8</div>
<div class="col-6 col-md-4">.col-6 .col-md-4</div>
</div>