Detlef Graff: Links mit CSS grafisch Darstellen

Beitrag lesen

Hi Timo,

Ich hatte mal ein ähnliches Problem.
Versuche es doch einmal so:

CSS-Datei:

a.news  {
 text-decoration: underline;
 font-weight: normal;
 color:#000000;
}
a:link.news  {}
a:visited.news {
 color:#6A7070;
}
a:hover.news {
 font-weight: bold;
 background-color:#FFFFFF;
}
a:active {
 background-color:#6A7070;
}

Gruss
Detlef