Answers for "how to remove color from link in html"

CSS
9

remove styling from a tag

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
 }
Posted by: Guest on December-21-2019
0

how to remove link color from <a>

/* its a style option */
a {
	text-decoration: none; /* remove underline */
	color: inherit; /* remove blue */
}
Posted by: Guest on August-04-2021

Code answers related to "how to remove color from link in html"

Browse Popular Code Answers by Language