Answers for "remove link line css"

14

remove underline html

<a style="text-decoration: none;"></a>
Posted by: Guest on February-20-2020
0

remove line from a href css

a {
  text-decoration: none;
}
Posted by: Guest on November-27-2020
-1

how to remove the line from a link in css

/*like suppose I take a tag of html*/
a{
  decoration:none;
}
Posted by: Guest on April-06-2021

Browse Popular Code Answers by Language