0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00

Update grid layout docs (#21806)

Update Mix and match section with correct responsive classes
for stacking cols.
This commit is contained in:
Marcus Molchany 2017-01-21 18:01:13 -08:00 committed by Mark Otto
parent 4fa7749442
commit 3cb252570a

View File

@ -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>