Answers for "remove text color change from a href"

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
1

remove anchor tag color

a { color: inherit; }
Posted by: Guest on May-30-2021

Browse Popular Code Answers by Language