das: a:visited text-decoration

Beitrag lesen

Hallo,

ein Link soll, wenn er besucht wurde, durchgestrichen sein.

Dachte das ist ganz leicht, aber es funktioniert bei mir einfach nicht.
Hier mein Code:

  
a:link { text-decoration:none; color:#000; }  
a:visited { text-decoration:line-through; color:#0F9; }  
a:hover { text-decoration:line-through; }  
a:active { text-decoration:line-through; }  

Danke für Eure Hilfe!