Answers for "css link visited not change color"

CSS
1

css url do not change color of visited links

a {
    text-decoration: none;
}

a:link, a:visited {
    color: blue;
}

a:hover {
    color: red;
}
Posted by: Guest on May-29-2020
0

link changes color after being clicked

a:link, a:visited {
    color: red;
}
Posted by: Guest on September-25-2020

Browse Popular Code Answers by Language