I am using following CSS:
#userinfo_box a:link,a:visited
{
text-decoration:none;
}
#userinfo_box a:hover
{
text-decoration:underline;
}
The HTML is
<div id="userinfo_box"><a href="">Hello World</a></div>
In IE6, Hello World is not being underlined. How to do it in IE6?
The only reason why IE6 might not be working in this instance is because the href is blank. Sometimes IE6 doesn’t recognize a link properly if that property is blank. Try setting it as
href="#"and it should work.