[CSS] Verlinkung spinnt?

S

SGD-Daniel

Gast
Hallo,

Testseite: www.os-andorra.de/test/test.php

Bei diesem Link schneidert er, bei dem Maus überfahren des Links, immer den unteren Pixel der Schrift ab. Warum?

Code:
a:link { text-decoration:none; font-weight:normal; font-size:12px; font-family:Verdana; color:#DDCC33; }
a:active { text-decoration:none; font-weight:normal; font-size:12px; font-family:Verdana; color:#DDCC33; }
a:visited { text-decoration:none; font-weight:normal; font-size:12px; font-family:Verdana; color:#DDCC33; }
a:hover { text-decoration:none; font-weight:normal; font-size:12px; font-family:Verdana; color:#DC143C; }
 
also ich kann im firefox keinen fehler finden.. auhc nicht bei 1000%iger Vergrößerung..

scheint wohl eher so, dass du einer optischen Täuschung erlegen bist.. der Wechsel von Gelb auf Rot halt.. dein Auge glaubt da fehlt etwas ;D
 
Mal als Tipp - das kann man wesentlich kürzer schreiben:

a { /* Gilt für alle */
text-decoration:none;
font-weight:normal;
font-size:12px;
font-family:Verdana;
color:#DDCC33;
}

a:hover {
color:#DC143C;
}
 
Zurück
Oben