Hallo,
Spielt im Style-Sheet die Reihenfolge der Elemente eine Rolle?
Hier steht folgendes im CSS:
body
{
font-family:Verdana,Tahoma,Arial;
background-color:#FFFFCC;
text-align:center;
}
a:link { color:#EEAAAA; background-color:#FFFF99; text-decoration:none; }
a:visited { color:#EEAAAA; text-decoration:none; }
a:focus { color:#00AA00; text-decoration:none; background-color:#FFFF77; }
a:hover { color:#EEAAAA; text-decoration:none; background-color:#FFFF99; }
a:active { color:#0000EE; text-decoration:none; background-color:#FFFF00; }
Der body-Block wird also ignoriert.
Hier kommt der body-Block nach den a-Definitionen und diese werden ignoriert.
Was mache ich falsch?
Viele Grüße,
Stefan