Skip to content

Instantly share code, notes, and snippets.

@zakmandhro
Created May 18, 2011 18:35
Show Gist options
  • Save zakmandhro/979207 to your computer and use it in GitHub Desktop.
Save zakmandhro/979207 to your computer and use it in GitHub Desktop.
Cross-browser inline block (SASS mixin)
@mixin inline-block {
display: -moz-inline-stack; // ff 2
display: inline-block;
zoom:1; *display: inline; _height: 15px; // ie 6-7
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment