Answers for "how to remove style from link css"

13

remove style from link

a, a:hover, a:focus, a:active {
     text-decoration: none;
     color: inherit;
 }
Posted by: Guest on February-22-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
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

remove basic html style link

a {
  color: blue;
  text-decoration: none; /* no underline */
}
Posted by: Guest on January-08-2021
0

remove basic html style link

body {
  color: blue;
}
a {
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}
Posted by: Guest on January-08-2021

Browse Popular Code Answers by Language