MudGuard: a.link:hover

Beitrag lesen

hi andreas,

sorry, meinte natürlich a:hover ;-))

hier ist zum beipsiel eine klasse, bei der ich das problem habe...

a.headerlink {
font-family:Verdana,Arial,sans-serif;
font-weight : bold;
color : Gray;
font-size :x-small;
}
a.headerlink:link {
text-decoration : none;
color: Gray;
}
a.headerlink:active {
text-decoration : none;
color: #cc0000;
}
a.headerlink:visited {
text-decoration : none;
color: Gray;
}
a.headerlink:hover {
color : white;
text-decoration : none;
background-color : #CC0000;
}

Die Reihenfolge ist entscheidend:

:link, :visited, :focus, :hover, :active

Andreas