Answers for "removing hyperlink color"

CSS
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 "removing hyperlink color"

Browse Popular Code Answers by Language