Skip to content

Instantly share code, notes, and snippets.

@dukeofgaming
Created June 9, 2014 04:12
Show Gist options
  • Save dukeofgaming/d13c49de65750708531c to your computer and use it in GitHub Desktop.
Save dukeofgaming/d13c49de65750708531c to your computer and use it in GitHub Desktop.
IE7 display inline-block parse hack
/*Taken from: http://flipc.blogspot.com/2009/02/damn-ie7-and-inline-block.html*/
div.content_block{
display: inline-block; /*The way other browsers work correctly*/
/*IE7*/
zoom: 1; /*Meaningless for other than IE*/
*display: inline; /*Asterisk parse hack, ignored by smarter browsers*/
_height: Xpx; /*IE6 only parse hack, where X is the desired height*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment