SpongeBOB
Well-Known Coder
HI everyone,
I would like to have the unvisited link with a color, without underline.
and the visited link grey, without underline , with > in front and < in the back
I tried few thing without success:
[CODE lang="css" title="CSS"]a:link {
color: red;
text-decoration: none;
}
a:hover {
color:green;
text-decoration: none;
}
a:visited {
color:#888888;
text-decoration-line: none;
}
a:visited::after {
content: "<"
}[/CODE]
Thanks
I would like to have the unvisited link with a color, without underline.
and the visited link grey, without underline , with > in front and < in the back
I tried few thing without success:
[CODE lang="css" title="CSS"]a:link {
color: red;
text-decoration: none;
}
a:hover {
color:green;
text-decoration: none;
}
a:visited {
color:#888888;
text-decoration-line: none;
}
a:visited::after {
content: "<"
}[/CODE]
Thanks