Skip to content

Instantly share code, notes, and snippets.

@etoxin
Created September 27, 2016 05:48
Show Gist options
  • Save etoxin/6ca49322b66d5c70a8e3f87aa86c209b to your computer and use it in GitHub Desktop.
Save etoxin/6ca49322b66d5c70a8e3f87aa86c209b to your computer and use it in GitHub Desktop.
@mixin displayFlexbox () {
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox; /* TWEENER - IE 10 */
display: -webkit-flex; /* NEW - Chrome */
display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment