Answers for "how to change visited link color in html"

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
3

how to remove link blue color from a tag using css

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
}
Posted by: Guest on June-18-2020

Code answers related to "how to change visited link color in html"

Browse Popular Code Answers by Language