-
-
Save necolas/1111864 to your computer and use it in GitHub Desktop.
Inline-block layout component
This file contains 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
<div class="ibw"> | |
<div class="ib">inline block</div> | |
<div class="ib">inline block</div> | |
<div class="ib">inline block</div> | |
</div> |
This file contains 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
.ibw { | |
word-spacing: -1em; /* hide whitespace between elements if separated by whitespace in the source */ | |
} | |
.ibw .ib { | |
display: -moz-inline-box; /* FF2 or lower */ | |
display: inline-block; | |
word-spacing: normal; | |
vertical-align: top; | |
/* IE6/7 inline-block hack */ | |
*display: inline; | |
*zoom: 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great work man, thanks for sharing!