Answers for "remove a text decoration"

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
3

how to remove underline from link

<a style="text-decoration:none" href="http://Example.Microsoft.Com">nonunderlinedhyperlink</a>
Posted by: Guest on October-04-2020
0

text decoration underline not removing

a:link {
  text-decoration: none!important;
}
Posted by: Guest on August-12-2021

Code answers related to "remove a text decoration"

Browse Popular Code Answers by Language