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?