aboutsummaryrefslogtreecommitdiff
path: root/docs/layout
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-01-24 00:01:44 -0800
committerGitHub <[email protected]>2017-01-24 00:01:44 -0800
commit519ecc1c69ddf1f8ba69c021c4450ee131cee391 (patch)
treebca04a1e0aa5fda8099b2476c60e881067cc582f /docs/layout
parentb509dbe75bb897c5728e941688d13a138d6adc39 (diff)
downloadbootstrap-519ecc1c69ddf1f8ba69c021c4450ee131cee391.tar.xz
bootstrap-519ecc1c69ddf1f8ba69c021c4450ee131cee391.zip
Rename order utilities to intended class names (#21739)
* rename order utilities to intended class names * Documentation fixes.
Diffstat (limited to 'docs/layout')
-rw-r--r--docs/layout/grid.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/layout/grid.md b/docs/layout/grid.md
index 58e51946e..4d0d3e6e8 100644
--- a/docs/layout/grid.md
+++ b/docs/layout/grid.md
@@ -514,13 +514,13 @@ Use flexbox utilities for controlling the **visual order** of your content.
{% example html %}
<div class="container">
<div class="row">
- <div class="col flex-unordered">
+ <div class="col order-0">
First, but unordered
</div>
- <div class="col flex-last">
+ <div class="col order-last">
Second, but last
</div>
- <div class="col flex-first">
+ <div class="col order-first">
Third, but first
</div>
</div>