Skip to content

Instantly share code, notes, and snippets.

@darren131
Created July 5, 2012 04:47
Show Gist options
  • Save darren131/3051442 to your computer and use it in GitHub Desktop.
Save darren131/3051442 to your computer and use it in GitHub Desktop.
ie7 inline block
// fixes inline-block bug in ie7
// example usage
// .element {
// display: inline-block;
// .lt-ie8 & {
// @include ie7-inline-block();
// }
// }
@mixin ie7-inline-block() {
display: inline; // IE7 inline-block hack
zoom: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment