Skip to content

Instantly share code, notes, and snippets.

@makingsnippets
Created June 20, 2012 18:53
Show Gist options
  • Save makingsnippets/2961542 to your computer and use it in GitHub Desktop.
Save makingsnippets/2961542 to your computer and use it in GitHub Desktop.
CSS: Cross browser inline-block
.ib-block {
vertical-align:top;
display:inline-block;
*zoom:1; /* IE6/7 */
*display:inline; /* IE6/7 */
}
.ib-container {
letter-spacing:-.25em;
word-spacing:-1em;
}
.ib-container .ib-block {
letter-spacing:normal;
word-spacing:normal;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment