Last active
August 29, 2015 14:03
-
-
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/
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
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; | |
} |
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
<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