Answers for "remove visited href"

CSS
0

css how to remove underline from visited sites

 
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
 
Posted by: Guest on January-05-2021

Browse Popular Code Answers by Language