Orlando: a:hover klappt bei Mozilla 0.9.7 nicht

Beitrag lesen

Hi, mcmoe

in der geposteten URL funktioniert der a:hover effekt mit mozilla 0.9.7(Win32) nicht. (...)

Das Problem liegt in der Formatierung der Links im Stylesheet. Du verwendest:

a:link       { color: #00cc00; text-decoration: underline }
a:visited    { color: #006633; text-decoration: underline }
a:hover      { color: #00cc33; text-decoration: none }
a:active     { color: #00cc33; text-decoration: none }
a:link       { color: #006633; text-decoration: underline }

Beim zweiten Auftreten von a:link kommt Mozilla aus dem Tritt. Wenn Du stattdessen

a:link       { color: #006633; text-decoration: underline; }
a:visited    { color: #006633; text-decoration: underline; }
a:hover      { color: #00cc33; text-decoration: none; }
a:active     { color: #00cc33; text-decoration: none; }

einbindest, klappt es auch mit dem Hausdrachen ;-)

LG Orlando