Skip to content

Instantly share code, notes, and snippets.

@ryanburgess
Created December 9, 2013 19:37
Show Gist options
  • Save ryanburgess/7879416 to your computer and use it in GitHub Desktop.
Save ryanburgess/7879416 to your computer and use it in GitHub Desktop.
Display inline block for cross browser SASS mixin.
// -----------------------------------------
// Display inline block cross browser
// -------------------------------------------
// example: @include inline-block();
@mixin inline-block() {
display: -moz-inline-stack;
display: inline-block;
vertical-align: top;
zoom: 1;
*display: inline;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment