Skip to content

Instantly share code, notes, and snippets.

@alptugan
Created September 22, 2015 11:29
Show Gist options
  • Save alptugan/47d6be54102660e9a192 to your computer and use it in GitHub Desktop.
Save alptugan/47d6be54102660e9a192 to your computer and use it in GitHub Desktop.
CSS Snippets
HTML CODE
<div id="navcontainer">
<ul>
<li><a href="#">Milk</a></li>
<li><a href="#">Eggs</a></li>
<li><a href="#">Cheese</a></li>
<li><a href="#">Vegetables</a></li>
<li><a href="#">Fruit</a></li>
</ul>
</div>
CSS CODE
#navcontainer ul
{
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
}
#navcontainer ul li { display: inline; }
#navcontainer ul li a
{
text-decoration: none;
padding: .2em 1em;
color: #fff;
background-color: #036;
}
#navcontainer ul li a:hover
{
color: #fff;
background-color: #369;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment