Created
April 24, 2015 02:09
-
-
Save al-the-x/e33a284775d213091700 to your computer and use it in GitHub Desktop.
Where those spaces come from when using `inline-block`...
This file contains hidden or 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
<style> | |
nav > a { display: inline-block; } | |
</style> | |
<nav> | |
<a href="#">A giant tile link</a> | |
<a href="#">Another tile link</a> | |
</nav> |
This file contains hidden or 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
<style>nav > a{display:block;}</style><nav><a href="#">A giant tile link</a><a href="#">Another tile link</a></nav> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment