HTML beginner |
|
CSS:
a:link
{
color: #FFFFFF;
text-decoration: none;
}
a:visited
{
color: #B2B2B2;
text-decoration: none;
}
a:hover
{
color: #FFFFFF;
text-decoration: none;
}
a:active
{
color: #FFFFFF;
text-decoration: none;
}
{ color: #FFFFFF; text-decoration: none; } a:visited { color: #B2B2B2; text-decoration: none; } a:hover { color: #FFFFFF; text-decoration: none; } a:active { color: #FFFFFF; text-decoration: none; }
HTML
<td width="100" class="borders3" onmouseover="this.style.backgroundColor='#B2B2B2';"onmouseout="this.style.backgroundColor='#EAEAEA';" align="center"><a href="test.html">TEST</a></td>
<td width="100" class="borders3" onmouseover="this.style.backgroundColor='#B2B2B2';"onmouseout="this.style.backgroundColor='#EAEAEA';" align="center"><a href="test.html">TEST</a></td>
Het probleem is als volgt:
Je ziet een menu met een lichtgrijze achtergrond en donkergrijze letters. Als je er over heen gaat, dan moet het donkergrijze achtergrond worden en letters moeten wit worden.
Maar als je erop klikt dan moet dat ook gebeuren.
Maar ik krijg het elke keer niet voor elkaar. Al geprobeerd met OnClick erbij, werkt averechts.. wie kan me helpen
|