Answers for "how to remove blue color from hyperlink in html"

CSS
3

how to remove link blue color from a tag using css

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
}
Posted by: Guest on June-18-2020
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 blue color from hyperlink in html"

Browse Popular Code Answers by Language