Answers for "taking underline off links css"

CSS
29

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 "taking underline off links css"

Browse Popular Code Answers by Language