aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/layout/flexbox-grid.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/layout/flexbox-grid.md b/docs/layout/flexbox-grid.md
index ec5a7365e..d15d6fb99 100644
--- a/docs/layout/flexbox-grid.md
+++ b/docs/layout/flexbox-grid.md
@@ -221,3 +221,25 @@ Flexbox utilities for horizontal alignment also exist for a number of layout opt
</div>
{% endexample %}
</div>
+
+## Reordering
+
+Flexbox utilities for controlling the **visual order** of your content.
+
+<div class="bd-example-row">
+{% example html %}
+<div class="container">
+ <div class="row">
+ <div class="col-xs flex-xs-unordered">
+ First, but unordered
+ </div>
+ <div class="col-xs flex-xs-last">
+ Second, but last
+ </div>
+ <div class="col-xs flex-xs-first">
+ Third, but first
+ </div>
+ </div>
+</div>
+{% endexample %}
+</div>