2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-15 11:59:39 +03:00

Fixes #19466: Document the flexbox order utils (#20697)

This commit is contained in:
Mark Otto
2016-09-11 22:31:26 -07:00
committed by GitHub
parent 8104bd7a02
commit a48e819921
+22
View 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>