Answers for "href remove color"

1

remove anchor tag color

a { color: inherit; }
Posted by: Guest on May-30-2021
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

Browse Popular Code Answers by Language