Answers for "visited link color html not change"

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

Browse Popular Code Answers by Language