Answers for "css color visited none"

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

visited in css

/*add border bottom after visit navigation menu link*/

a:visited {
    border-bottom: 3px solid red ;
}
Posted by: Guest on June-04-2021

Browse Popular Code Answers by Language