L'URL CSS ne change pas la couleur des liens visités
a {
text-decoration: none;
}
a:link, a:visited {
color: blue;
}
a:hover {
color: red;
}
Soulless Creature
a {
text-decoration: none;
}
a:link, a:visited {
color: blue;
}
a:hover {
color: red;
}
a:visited {
color: initial;
}