Created
September 23, 2012 20:01
-
-
Save caycefischer/3772869 to your computer and use it in GitHub Desktop.
Just Harry Roberts' nav abstraction, robust-ified with code to eliminate the whitespace between inline-block elements. I have to do this every time anyway, so now it's built into the snippet. Monospace font is set to ensure the amount of space is as cons
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
<div class="nav"> | |
<li class="box"><a href="">One</a></li> | |
<li class="box"><a href="">Two</a></li> | |
<li class="box"><a href="">Three</a></li> | |
</div> |
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
/* The improved nav abstraction */ | |
.nav { | |
list-style:none; | |
/* fix inline-block whitespace jank */ | |
letter-spacing: -0.625em; | |
font-family: monospace; | |
} | |
.nav > li, .nav > li a { | |
display:inline-block; | |
/* fix inline-block whitespace jank */ | |
letter-spacing: normal; | |
font-family: sans-serif; | |
} | |
/* make this thing look pretty */ | |
body { | |
margin: 2em; | |
} | |
.box { | |
background-color: #bada55; | |
padding: 1em; | |
} | |
.box:hover { | |
background-color: #0b5e55; | |
} | |
.box:hover a { | |
color: #bada55; | |
} | |
a { | |
color: #0b5e55; | |
text-decoration: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment