Einzelnen Beitrag anzeigen

Benutzerbild von sakura
sakura

Registriert seit: 10. Jun 2002
Ort: Unterhaching
11.412 Beiträge
 
Delphi 12 Athens
 
#2

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

  Alt 3. Nov 2003, 15: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 Lizbeth
Ich bin nicht zurück, ich tue nur so
  Mit Zitat antworten Zitat