Skip to content

Instantly share code, notes, and snippets.

@iManu
Forked from jlong/_inline-block.scss
Last active August 29, 2015 14:06
Show Gist options
  • Save iManu/3cf330e900534e511822 to your computer and use it in GitHub Desktop.
Save iManu/3cf330e900534e511822 to your computer and use it in GitHub Desktop.
SCSS: inline-block
/*
Inline-block for IE6, Firefox 2, and up
via http://blog.mozilla.com/webdev/2009/02/20/cross-browser-inline-block
*/
@module inbl {
display: -moz-inline-stack;
display: inline-block;
zoom: 1;
*display: inline;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment