Skip to content

Instantly share code, notes, and snippets.

@Quinten
Created April 21, 2011 12:46
Show Gist options
  • Save Quinten/934409 to your computer and use it in GitHub Desktop.
Save Quinten/934409 to your computer and use it in GitHub Desktop.
inline-block in IE (finally)
li {
display: -moz-inline-stack; /* Firefox 2 */
display: inline-block;
zoom: 1; /* IE hack to trigger hasLayout */
*display: inline; /* IE hack to achieve inline-block behavior */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment