Monday, September 27, 2010

CSS: Hover Links

Alright here is what to do guys for hover links

<a href="#" class="hover-link">Link1</a>
<a href="#" class="hover-link">Link2</a>


a .hover-link {
color:#000;
text-decoration:none;
margin-left: 10px;
display:inline;
}
a .hover-link:hover {
color: #333;
} 
Alright and there is how you do it!

3 comments:

  1. Aaah thanks man, I'm always very bad with this sort of stuff so this helps me out loads putting links up and other convenient stuff. Keep up the informative posts!

    ReplyDelete