Skip to content

Commit

Permalink
Fixes #19466: Document the flexbox order utils
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Sep 12, 2016
1 parent 076a950 commit fbd0c0d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docs/layout/flexbox-grid.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>

0 comments on commit fbd0c0d

Please sign in to comment.