Skip to content

Instantly share code, notes, and snippets.

@jonas8
Created February 8, 2012 15:11
Show Gist options
  • Select an option

  • Save jonas8/1770364 to your computer and use it in GitHub Desktop.

Select an option

Save jonas8/1770364 to your computer and use it in GitHub Desktop.
Cross-Browser Inline-Block
li {
width: 200px;
min-height: 250px;
display: -moz-inline-stack;/* in firefox 2 */
display: inline-block;
vertical-align: top;
zoom: 1;/* hasLayout in ie 6,7 */
*display: inline; /*ie 6,7 */
_height:250px;/* ie 6 */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment