link and visited css code example
Example 1: remove style from link
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
Example 2: css link visited
a:visited {
color: pink;
}
a, a:hover, a:focus, a:active {
text-decoration: none;
color: inherit;
}
a:visited {
color: pink;
}