Hey guys,
Anybody know any tricks for getting rollover td's to work in IE without javascript?
This is my CSS
.rollover1
{
background-color:#FFFFFF;
background-image:url(/site_images/bg.jpg);
background-repeat:repeat-x;
background-position:bottom;
}
.rollover1:hover
{
background-color:#FFFFFF;
background-image:url(/site_images/bg2.jpg);
background-repeat:repeat-x;
background-position:bottom;
}
I'm obviously applying it to a TD tag and it works in some browsers but not others. I know that :hover is meant to only work on A tags in IE but are than any tricks I can use to get this to work?
thanks,
Chris










Bookmarks