Using Style Tags For Mouseover Link Effects
Posted Friday, February 6, 2004
(Internet Explorer)
In this example, the active text link is underlined with the color set to #0000FF. When the mouse is placed over the link, the text color will change to #FF0000 and the underline disappears.
Place the <STYLE> tag between your <HEAD> and </HEAD> tags.
<STYLE>
<!--
A:active { color:#0000FF; text-decoration; }
A:hover { color:#FF0000; text-decoration: none; }
//-->
</STYLE>