Created
February 8, 2012 15:11
-
-
Save jonas8/1770364 to your computer and use it in GitHub Desktop.
Cross-Browser Inline-Block
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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