Hallo,
mit dieser css-Datei möchte ich erreichen, dass Links im class="content" rot sind. Sie sind aber grau und ich verstehe das nicht.
Kann mir das jmd erklären/mir helfen?
HTML-Quellcode (Hier wird ein grauer statt roter Link angezeigt):
<tr>
<td class="content"><a href="passwort_anfordern.php"><img src="images/zeigen.gif" width="8" height="8" border="0" alt="">passwort anfordern</a></td>
</tr>
CSS-File("leider" komplett damit nicht irgendwo einer Fehler drin ist, den ich übersehe / nicht kenne):
td {
font-family: Arial;
font-size : 11px;
font-style : normal;
font-variant : normal;
font-weight : normal;
text-decoration : none;
text-transform : none;
color : #999999;
}
a:link {
text-decoration: none;
color : #8C8E8C;
}
a:visited {
text-decoration: none;
color : #8C8E8C;
}
a:hover {
text-decoration : underline;
color : #ADAEAD;
}
a:active {
text-decoration : none;
color : #ADAEAD;
}
.content {
font-family : Arial, Helvetica;
font-size : 11px;
color : #999999
background : #FFFFFF;
}
.content a:link {
color #FF3333;
}
.content a:hover {
color #FF3333;
}
.content a:active {
color #FF3333;
}
.menu a:link {
background : #CCCCCC;
}
.menu a:hover {
background : #FF3333;
}
.menu a:active {
background : #FF3333;
}
.1_line {
background : #999999;
}
select {
font-size : 9px;
}
mit dieser css-Datei möchte ich erreichen, dass Links im class="content" rot sind. Sie sind aber grau und ich verstehe das nicht.
Kann mir das jmd erklären/mir helfen?
HTML-Quellcode (Hier wird ein grauer statt roter Link angezeigt):
<tr>
<td class="content"><a href="passwort_anfordern.php"><img src="images/zeigen.gif" width="8" height="8" border="0" alt="">passwort anfordern</a></td>
</tr>
CSS-File("leider" komplett damit nicht irgendwo einer Fehler drin ist, den ich übersehe / nicht kenne):
td {
font-family: Arial;
font-size : 11px;
font-style : normal;
font-variant : normal;
font-weight : normal;
text-decoration : none;
text-transform : none;
color : #999999;
}
a:link {
text-decoration: none;
color : #8C8E8C;
}
a:visited {
text-decoration: none;
color : #8C8E8C;
}
a:hover {
text-decoration : underline;
color : #ADAEAD;
}
a:active {
text-decoration : none;
color : #ADAEAD;
}
.content {
font-family : Arial, Helvetica;
font-size : 11px;
color : #999999
background : #FFFFFF;
}
.content a:link {
color #FF3333;
}
.content a:hover {
color #FF3333;
}
.content a:active {
color #FF3333;
}
.menu a:link {
background : #CCCCCC;
}
.menu a:hover {
background : #FF3333;
}
.menu a:active {
background : #FF3333;
}
.1_line {
background : #999999;
}
select {
font-size : 9px;
}
Kommentar