Skip to content

Instantly share code, notes, and snippets.

@drocarmo
Created April 29, 2014 21:08
Show Gist options
  • Save drocarmo/4304a194ec757cf359b7 to your computer and use it in GitHub Desktop.
Save drocarmo/4304a194ec757cf359b7 to your computer and use it in GitHub Desktop.
Flexbox sass @mixin
// From @chriscoyier
// http://css-tricks.com/snippets/css/a-guide-to-flexbox/
@mixin flexbox() {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
@mixin flex($values) {
-webkit-box-flex: $values;
-moz-box-flex: $values;
-webkit-flex: $values;
-ms-flex: $values;
flex: $values;
}
@mixin order($val) {
-webkit-box-ordinal-group: $val;
-moz-box-ordinal-group: $val;
-ms-flex-order: $val;
-webkit-order: $val;
order: $val;
}
.wrapper {
@include flexbox();
}
.item {
@include flex(1 200px);
@include order(2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment