css - Link color in Firefox -


i'm changing color of link in web page. css: a:link, a:visited, a:active { color:#009900 !important; text-decoration:none; }

a:hover {   background-color:#009900;   color:#ffffff !important;   text-decoration:none; }  .lemmas a:link, a:visited, a:active {   color:#014e68 !important;    text-decoration:none; }  .lemmas a:hover {   background-color:#014e68;   color:#ffffff !important;   text-decoration:none; }  .feel a:link, a:visited, a:active {   color:#ff3300;   text-decoration:none; }  .feel a:hover {   background-color:#ff3300;   color:#ffffff !important;   text-decoration:none; } 

the link colored last color 1 assigned class feel in firefox. in explorer colors shown perfectly. know problem? thanks

i think these selectors:

.lemmas a:link, a:visited, a:active {} .feel a:link, a:visited, a:active {} 

should like:

.lemmas a:link, .lemmas a:visited, .lemmas a:active {} .feel a:link, .feel a:visited, .feel a:active {} 

if not, :visited , :active pseudoclasses applied visited , active links.


Comments

Popular posts from this blog

Detect support for Shoutcast ICY MP3 without navigator.userAgent in Firefox? -

web - SVG not rendering properly in Firefox -

java - JavaFX 2 slider labelFormatter not being used -