Horizontal menu
Start with the Whole List <ul>
ul#navigation {
float: left; /*Moves the list left*/
margin: 0;/*Moves the list left*/
padding: 0; /*Moves the list left*/
width: 100%;
background-color: #039;
}
List Items <li>
ul#navigation li { display: inline; } /*Forces the list to line up*/
The Links <a>
ul#navigation li a {
display: block; /* now you make the links behave like a box*/
text-decoration: none; /*removes the bullets*/
padding: .25em 1em;
border-bottom: solid 1px #39f;
border-top: solid 1px #39f;
border-right: solid 1px #39f;
}
a:link, a:visited { color: #fff; }
ul#navigation li a:hover {
background-color: #fff;
color: #000;
}