Answers for "link underline css"

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 take of underline from link through css

<a style ="text-decoration-line: none;">halo</a>
can be used in vs code
Posted by: Guest on August-24-2021
3

how to get rid of underline for links in css

a:link - a normal, unvisited link
a:visited - a link the user has visited
a:hover - a link when the user mouses over it
a:active - a link the moment it is clicked
Posted by: Guest on February-21-2020

Browse Popular Code Answers by Language