Erstmal vielen Dank für Eure Antworten!
Ich habe in der css folgendes geschrieben:
.darkcell {
text-decoration : none;
background-color : #a51d3b;
color : white;
}
und in der index
<tr class="darkcell" usw.>
Allerdings färbt er meine normale Schrift, aber nicht die Links.
So stand es vorher für alle Links in der css. Ich verstehe aber das a:link nicht. Vor allem weiß ich nicht, wo er auf a:link verzweigt, weil in der index nichts davon zu sehen ist. Und wenn ich das in .darkcell integrieren will und dann jeweils farblich ändere, wie muß ich´s dann schreiben?
A:link {
text-decoration : none;
background-color : #a51d3b;
color : white;
}
A:hover {
text-decoration : none;
background-color : #a51d3b;
color : white;
}
A:active {
text-decoration : none;
background-color : #a51d3b;
color : white;
}
A:visited {
color : white;
text-decoration : none;
background-color : #a51d3b;
}