Log in

View Full Version : Simple question :)



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

Thx :)

thetestingsite
04-08-2008, 06: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, 06:23 PM
It work
Thanks :)