Skip to content

Instantly share code, notes, and snippets.

@hansspiess
Created March 21, 2012 09:47
Show Gist options
  • Save hansspiess/2145859 to your computer and use it in GitHub Desktop.
Save hansspiess/2145859 to your computer and use it in GitHub Desktop.
Frontend: horizontal navigation list
#navigation {
border: 1px solid #222222;
background: #040505 url(../images/background-navigation.gif) repeat-x;
height: 1%;
overflow: hidden;
margin-bottom: 2px;
}
#navigation ul {
margin: 0;
padding: 0;
list-style: none;
font-weight: bold;
text-transform: uppercase;
}
#navigation ul li {
line-height: 28px;
float: left;
border-right: 1px solid #222;
}
#navigation ul li.last {
float: right;
border-right: none;
border-left: 1px solid #000;
}
#navigation ul li.last a {
border-right: none;
border-left: 1px solid #222;
}
#navigation ul li a {
float: left;
padding: 0 10px;
color: #DDDDDD;
border-right: 1px solid #000;
}
#navigation ul li a:hover,
#navigation ul li a.active {
background-color: #000;
color: #FFFFFF;
text-decoration: none;
}
<div id="navigation">
<ul>
<li><a href="#">Index</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">Blogs</a></li>
<li><a href="#">Forum</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Subscribe</a></li>
<li class="last"><a href="#">Search</a></li>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment