Another Cross Browsers support question, however I havn't been able to find a related topic. This has to do with Netscape 6, right now I don't want to think about 4.x
The problem is related to the rollover text effect you can achieve with CSS. Is the :hover property not supported when used with a class in N6? It all works perfectly fine if its not defined as a class.
Ex. Code:
I tried adding an A before each .link, but that didn't help.
Can someone help me with this? Its not a major problem, but I'd like the sites to look and behave a close as possible between the browsers.
The problem is related to the rollover text effect you can achieve with CSS. Is the :hover property not supported when used with a class in N6? It all works perfectly fine if its not defined as a class.
Ex. Code:
Code:
//This all works perfectly in N6
A:link {color: #ab6426;}
A:hover {color: #000000;}
A:visited {color:#ab6426;}
A:visited:hover {color: #000000;}
A:active {color: #000000;}
//Then, defined in a class...
.link:link {color: #FFFFFF;} //Works
.link:hover {color: #000000;} //Don't work
.link:visited {color:#FFFFFF;} //Works
.link:visited:hover {color: #000000;} //Don't work
.link:active {color: #000000;} //Works
I tried adding an A before each .link, but that didn't help.
Can someone help me with this? Its not a major problem, but I'd like the sites to look and behave a close as possible between the browsers.