Skip to content

Instantly share code, notes, and snippets.

@al-the-x
Created April 24, 2015 02:09
Show Gist options
  • Save al-the-x/e33a284775d213091700 to your computer and use it in GitHub Desktop.
Save al-the-x/e33a284775d213091700 to your computer and use it in GitHub Desktop.
Where those spaces come from when using `inline-block`...
<style>
nav > a { display: inline-block; }
</style>
<nav>
<a href="#">A giant tile link</a>
<a href="#">Another tile link</a>
</nav>
<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