ankerfred: Was mache ich falsch?

Beitrag lesen

Hallo

ich habe folgende CSS-Klassen definiert:

a.nav_un:link {
width:100%;
font-family:Arial;
font-size:8pt;
font-weight:bold;
color:#0000A0;
text-decoration:none;
}
a.nav_un:visited {
width:100%;
font-family:Arial;
font-size:8pt;
font-weight:bold;
color:#0000A0;
text-decoration:none;
}
a.nav_un:hover {
width:100%;
font-family:Arial;
font-size:8pt;
font-weight:bold;
color:#640014;
text-decoration:none;
}
a.nav_un:active {
width:100%;
font-family:Arial;
font-size:8pt;
font-weight:bold;
color:#640014;
text-decoration:none;
}

Meine Links sehen in etwa so aus:
<a href='#test1' class='nav_un'>Test1</a>
<a href='#test2' class='nav_un'>Test2</a>
<a href='#test3' class='nav_un'>Test3</a>

Link, Visited und Hover funktionieren, aber Active nicht. Warum? Active wird bei mir (IE 6) wie Link angezeigt.

MfG
ankerfred