Einzelnen Beitrag anzeigen

Benutzerbild von sakura
sakura

Registriert seit: 10. Jun 2002
Ort: München
11.412 Beiträge
 
Delphi 11 Alexandria
 
#2

Re: [CSS] CSS Datei enthält anscheinend Fehler

  Alt 3. Nov 2003, 14:54
Ich vermute mal, daß Du eine (ältere) Mozilla-Engine hast, und diese verhält sich leider nicht korrekt bei den Sub-Classes. "Vererbung" etc. wird nicht richtig gehandhabt.

Code:
a {
   color: #00CC33;
   font-family: Times;
   font-weight: bold;
}

a:link {
   color: #00CC33;
   font-family: Times;
   font-weight: bold;
         text-decoration:none;
}
a:visited {
   color: #00CC33;
   font-family: Times;
   font-weight: bold;
         text-decoration:none;
}
a:hover {
   color: #00CC33;
   font-family: Times;
   font-weight: bold;
         text-decoration:underline, overline;
}
a:active {
   color: #00CC33;
   font-family: Times;
   font-weight: bold;
         text-decoration:underline;
}
......
Daniel W.
Ich bin nicht zurück, ich tue nur so
  Mit Zitat antworten Zitat