Skip to content

Instantly share code, notes, and snippets.

@renekoch
Created April 10, 2013 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save renekoch/5354489 to your computer and use it in GitHub Desktop.
Save renekoch/5354489 to your computer and use it in GitHub Desktop.
Sass file for cross-browser inline-block (NOTE: this does not work on native block elements in IE6/IE7)
@mixin inline-block($vert-align: top) {
display:inline;
display:-moz-inline-stack;
display:inline-block;
vertical-align: $vert-align;
zoom:1;
min-height:0px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment