Answers for "how to make a link not change color in html"

CSS
1

css url do not change color of visited links

a {
    text-decoration: none;
}

a:link, a:visited {
    color: blue;
}

a:hover {
    color: red;
}
Posted by: Guest on May-29-2020
5

how to change hyperlink color in css

a {
  background-color: red;
  color: white;
  padding: 1em 1.5em;
  text-decoration: none;
  text-transform: uppercase;
}
Posted by: Guest on November-20-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 make a link not change color in html"

Browse Popular Code Answers by Language