PDA

View Full Version : Simple question :)


VelvetMorning
04-08-2008, 06:44 PM
How can i make effect when i mouseover on hyperlink it underline?

Thx :)

thetestingsite
04-08-2008, 07:00 PM
Using css:


<style type="text/css">
a:link,a:visited {
color: #000;
text-decoration: none;
}
a:hover {
color: #0000FF;
text-decoration: underline;
}
</style>


Hope this helps.

VelvetMorning
04-08-2008, 07:23 PM
It work
Thanks :)