Perseus
Registered
It is known that :hover is an issue with IE/Mac 5.2. I am having trouble finding hacks/fixes for this bug. I am using :hover on links. I'll provide the CSS here:
My desired effect is: a link that only displays the underline when the mouse is hovering over the link. This CSS works in Firefox, Safari, Opera, Netscape. What is the workaround?
a:link {
font-family: Verdana, Tahoma, serif;
color: white;
text-decoration: none;
}
a:visited {
font-family: Verdana, Tahoma, serif;
color: white;
text-decoration: none;
}
a:hover {
font-family: Verdana, Tahoma, serif;
color: white;
text-decoration: underline;
}
My desired effect is: a link that only displays the underline when the mouse is hovering over the link. This CSS works in Firefox, Safari, Opera, Netscape. What is the workaround?