Mouse over navagation bar

liunx

Guest
Hi Everyone!

Just learning this CSS. How would I code a mouse over navagation bar for css? :) I want to have 3 items in the menu and use hyper links not graphics. Just as

Mission Service About Us
Credit
Refused


Thank you for your help!a:link,
a:visited {
display: block;
float: left;
background-color: white;
font-size: 13px;
font-weight: bold;
text-decoration: none;
text-align: center;
color: black;
padding: 8px;
border-right: #D0D0D0 2px solid;
}

a:hover,
a:active {
background-color: green;
color: black;
}

you can work from thisThank you!Check out this "listmatic" design (<!-- m --><a class="postlink" href="http://css.maxdesign.com.au/listamatic/vertical09.htm">http://css.maxdesign.com.au/listamatic/vertical09.htm</a><!-- m -->) if you want something more elaborate.Very Nice. Thanks
 
Back
Top