]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fixes #19466: Document the flexbox order utils (#20697)
authorMark Otto <markd.otto@gmail.com>
Mon, 12 Sep 2016 05:31:26 +0000 (22:31 -0700)
committerGitHub <noreply@github.com>
Mon, 12 Sep 2016 05:31:26 +0000 (22:31 -0700)
docs/layout/flexbox-grid.md

index ec5a7365e5285fd212b9929dcb41a45ec2b4c916..d15d6fb996c4894610d3907eec790448395e526b 100644 (file)
@@ -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>