Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save eralston/970060 to your computer and use it in GitHub Desktop.
Save eralston/970060 to your computer and use it in GitHub Desktop.
Cross-browser display: inline-block
/*
* Cross-browser display: inline-block
*
* References:
* - http://foohack.com/2007/11/cross-browser-support-for-inline-block-styling/
* - http://www.getonthenet.eu/css-howto-cross-browser-inline-block/
*/
inline-block {
display: -moz-inline-box; /* Firefox 2 */
display: inline-block; /* All good browsers */
zoom: 1; /* IE6/7 magic */
*display: inline; /* also IE magic, set this if it's not inline */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment