Skip to content

Instantly share code, notes, and snippets.

@jasonkmccoy
Created March 14, 2015 21:31
Show Gist options
  • Save jasonkmccoy/778f80e602a7224b7687 to your computer and use it in GitHub Desktop.
Save jasonkmccoy/778f80e602a7224b7687 to your computer and use it in GitHub Desktop.
flex order mixin
@mixin flex-order($order){
-webkit-box-ordinal-group: $order; // old
-moz-box-ordinal-group: $order; // old
-ms-flex-order: $order; // ie
-webkit-order: $order; // new
order: $order; // new
}
// Usage
div {
@include flex-order(3);
}
@jasonkmccoy
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment