Answers for "By default Hyperlinks are displayed with an underline. How do you remove the underline from all hyperlinks by using CSS code?"

14

remove underline html

<a style="text-decoration: none;"></a>
Posted by: Guest on February-20-2020
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

Code answers related to "By default Hyperlinks are displayed with an underline. How do you remove the underline from all hyperlinks by using CSS code?"

Browse Popular Code Answers by Language