Skip to content

Instantly share code, notes, and snippets.

@caycefischer
Created September 23, 2012 20:01
Show Gist options
  • Save caycefischer/3772869 to your computer and use it in GitHub Desktop.
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
<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>
/* 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