Magic Mike: a: link wird ignoriert

Beitrag lesen

Moin Leute,

z.Zt. habe ich mal mehr Fragen als Antworten.

Ich habe die Darstellung der Links in CSS festgelegt.

Es funktioniert visited - hover - active

aber, (unvisited) Link funtzt nicht ;-)
Der Browser nimmt hier die default Einstellungen.
Ich habe keinen Plan warum.

<snip>
<style type="text/css">

a:link
{
    text-decoration:none;
    color:#800080;
    font-weight:400;
    font-family:Tahoma, Verdana;
}

a:visited
{
    text-decoration:none;
    color:#800080;
    font-weight:400;
    font-family:Tahoma, Verdana;
}

a:hover
{
    text-decoration:underline;
    color:#000000;
    font-weight:400;
    font-family:Tahoma, Verdana;
}

a:active
{
    text-decoration:underline;
    color:#000000;
    font-weight:400;
    font-family:Tahoma, Verdana;
}

</style>

</snip>

Es geht also um a:link

Hat jemand ne Idee?

regds
Mike