Hallo,
ich habe mit meiner CSS einige Probleme.
Hier erst einmal der Code:
Es soll der Link in der Farbe und Fett dargestellt werden -> funktioniert
Beim überfahren mit der Maus soll der Text in einer anderen Farbe und in Normalschrift erscheinen -> funktioniert nicht.
Was mache ich falsch???
Steffen
ich habe mit meiner CSS einige Probleme.
Hier erst einmal der Code:
PHP-Code:
.tableDetail1 a:link {
color: #660000;
font-family: tahoma;
font-size: 11px;
font-weight: bold;
text-decoration: none;
}
.tableDetail1 a:hover {
color: #990000;
font-family: tahoma;
font-size: 11px;
font-weight: normal;
font-style: normal;
line-height: normal;
font-variant: normal;
text-transform: none;
text-decoration: none;
}
.tableDetail1 a:visited {
color: #660000;
font-family: tahoma;
font-size: 11px;
font-weight: bold;
font-style: normal;
text-decoration: none;
}
Beim überfahren mit der Maus soll der Text in einer anderen Farbe und in Normalschrift erscheinen -> funktioniert nicht.
Was mache ich falsch???
Steffen
Kommentar