Answers for "css take underline off links"

CSS
21

remove underline from link css

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
 }
Posted by: Guest on December-21-2019
-1

link text underline css none

.link{
   color: #FFFFFF;
  text-decoration: none;
}
Posted by: Guest on September-29-2021

Code answers related to "css take underline off links"

Browse Popular Code Answers by Language