Firefox und die Linkfarbe

Brian Folte

Angesehenes Mitglied
Hallo. Im IE 7 funktioniert alles super, im Firefox hingegen nimmt er die normale schwarze Farbe nicht an sondern zeigt mir blaue unterstrichene Links.
Hier einmal der css teil
CODE a:link {color: #000000;text-decoration: none}
a:active {  text-decoration: none}
a:visited {color: black;text-decoration: none}
a:hover {color: #FF0000;text-decoration: none}


Google konnte mir auch nicht helfen.

LG Brian

Eddit:
Komisch so funktioniert es:

CODE a:link {color: #000000;
text-decoration: none;
}
a:active {
text-decoration: none;
}
a:visited {
color: black;
text-decoration: none;
}
a:hover {
color: #FF0000;
text-decoration: none;
}


Was man nicht immer alles in der Eile übersieht
laugh.gif


LG Brian
 
Also bei mir mit FF auf dem Mac ist der Link schwarz ohne Unterstrich. Beim drüberfahren wird er rot. Vielleicht ist bei dir das alte CCS noch im Cache. Leere mal den Cache.
 
Im Zusammenhang Links/CSS gibt es die sogenannte LoVe&HAte Regel.
Die besagt, dass die Reihenfolge immer folgende sein muss: a:link; a:visited; a:hover; a:activated.

Könnte mir gut vorstellen, dass FF da strenger drauf achtet als IE
 
Und mach doch gleich einen

a {
text-decoration: none;
}

und erspar Dir das text-decoration: none; bei den anderen.

Nur Detail.
 
Zurück
Oben