Answers for "how to make link white and no underline css"

CSS
7

how to not underline links in css

a {
    text-decoration: none;
}
Posted by: Guest on November-10-2020
2

remove color and underline from link css

a {
  text-decoration: none;
  /*you can add your own color with : color: #FFF;*/
}
Posted by: Guest on October-16-2021

Browse Popular Code Answers by Language