aboutsummaryrefslogtreecommitdiff
path: root/docs/layout
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-01-21 18:02:23 -0800
committerMark Otto <[email protected]>2017-01-21 18:02:23 -0800
commitc920049b5b36cfcb225c92d9aaf743fa6320a2e0 (patch)
tree9b3a3ad3af1a29a7131663c45374e7d11e1e46e3 /docs/layout
parentdeb1c59c53f3a840bb1fe2794fdf9fc7d081f47f (diff)
parent3cb252570a0fb2507c7169427569f50a0a1cb031 (diff)
downloadbootstrap-c920049b5b36cfcb225c92d9aaf743fa6320a2e0.tar.xz
bootstrap-c920049b5b36cfcb225c92d9aaf743fa6320a2e0.zip
Merge branch 'v4-dev' of https://github.com/twbs/bootstrap into v4-dev
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>