Skip to content

Instantly share code, notes, and snippets.

@starlightsys
Last active August 29, 2015 14:03
Show Gist options
  • Save starlightsys/a05c821f2e846fee2f52 to your computer and use it in GitHub Desktop.
Save starlightsys/a05c821f2e846fee2f52 to your computer and use it in GitHub Desktop.
Example of inline-block with whitespace fix. Demo at http://jsfiddle.net/vegarg/G2W5M/
ul {
/* Fix for inline-block whitespace issue. Source: http://www.lifeathighroad.com/web-development/css-web-development/inline-block-whitespace-workaround/ */
letter-spacing: -4px;
word-spacing: -4px;
}
li {
background-color: lightgray;
display: inline-block;
height: 75px;
margin-right: 15px;
/* Almost always want this as well:
vertical-align: top; */
width: 200px;
/* Fix for inline-block whitespace issue. Source: http://www.lifeathighroad.com/web-development/css-web-development/inline-block-whitespace-workaround/ */
letter-spacing: normal;
word-spacing: normal;
}
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment