Folgendes: Ich hab per CSS die link-farben definiert, will aber einen bestimmten Bereich davon unbeeinflusst machen. Geht das? Danke im voraus.
CSS-FRAGE
Einklappen
X
-
-
hab folgendes in meiner CSS-Datei:
Code:.menupunkt { font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; line-height: normal; font-weight: 500; color: #666666; a:link { color#FFFFFF; text-decoration:none }; a:visited { text-decoration:none; color:#999999 }; a:hover { color:#FFFFFF; text-decoration:none; } } a:link {color#AAAAD1;text-decoration:none} a:visited {text-decoration:none; color:#AAAAD1} a:hover {color:#7F70B3;text-decoration:underline overline;}
[Editiert von Titus am 06-11-2001 um 00:00]
Kommentar
-
Du kannst stylesheet-Angaben nicht schachteln. So sollte es funktionieren:[code]
.menuepunkt {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
line-height: normal;
font-weight: 500;
color:#666666;
}
a.menuepunkt:link, a.menüpunkt:hover {
color:#ffffff;
}
a.menuepunkt:visited {
color:#999999;
}
Kommentar
-
Kommentar
-
Ich bringe die Syntax auch dauernd durcheinander, aber so klappt's mit dem IE5.5 und Mozilla 0.9.3.
Code:.menuepunkt a:link { color:#FFFFFF; text-decoration:none } .menuepunkt a:hover { color:#FFFFFF; text-decoration:none; }
Kommentar
Kommentar