-
Notifications
You must be signed in to change notification settings - Fork 771
fxFlexOrder API
Adam Plumer edited this page Mar 14, 2018
·
2 revisions
The fxFlexOrder directive should be used on elements within a sorted fxLayout container and identifies the positional ordering of the element
<div fxLayout="row">
<div fxFlexOrder="4">1. One</div>
<div fxFlexOrder="2">2. Two</div>
<div fxFlexOrder="3">3. Three</div>
<div fxFlexOrder="1">4. Four</div>
</div>
fxFlexOrder takes a single integer as argument, and populates its host element with the following inline CSS styling
Value | Equivalent CSS |
---|---|
(default) |
order: 0 |
<int> |
order: <int> |
-
Quick Links
-
Documentation
-
Demos
-
StackBlitz Templates
-
Learning FlexBox
-
History
-
Developer Guides
-
Contributing