Skip to content

Instantly share code, notes, and snippets.

@aakos
Created November 25, 2012 20:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aakos/4145215 to your computer and use it in GitHub Desktop.
Save aakos/4145215 to your computer and use it in GitHub Desktop.
negate white space on inline-block elements
/*
* Taken from: http://yui.yahooapis.com/3.5.0/build/cssgrids/grids.css
*/
.nav {
letter-spacing: -0.25em; /*webkit*/
*letter-spacing: normal; /*IE hack*/
word-spacing: -0.43em;
}
.nav a {
display: inline-block;
*display: inline;
zoom: 1;
letter-spacing: normal;
word-spacing: normal;
vertical-align: top;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment