aboutsummaryrefslogtreecommitdiff
path: root/docs/utilities
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/utilities
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/utilities')
-rw-r--r--docs/utilities/flexbox.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/utilities/flexbox.md b/docs/utilities/flexbox.md
index 9b6add5c4..9bca02848 100644
--- a/docs/utilities/flexbox.md
+++ b/docs/utilities/flexbox.md
@@ -354,9 +354,9 @@ Change the _visual_ order of specific flex items with a handful of `order` utili
{% example html %}
<div class="d-flex flex-nowrap bd-highlight">
- <div class="flex-last p-2 bd-highlight">First flex item</div>
+ <div class="order-last p-2 bd-highlight">First flex item</div>
<div class="p-2 bd-highlight">Second flex item</div>
- <div class="flex-first p-2 bd-highlight">Third flex item</div>
+ <div class="order-first p-2 bd-highlight">Third flex item</div>
</div>
{% endexample %}
@@ -365,7 +365,7 @@ Responsive variations also exist for `order`.
{% for bp in site.data.breakpoints %}
- `.order{{ bp.abbr }}-first`
- `.order{{ bp.abbr }}-last`
-- `.order{{ bp.abbr }}-unordered`{% endfor %}
+- `.order{{ bp.abbr }}-0`{% endfor %}
## Align content