Answers for "how to remove the link line in css"

CSS
10

how to remove underline from link in html

<body>
   <h2>About</h2>
   <p>
     <!-- Just add text decoration style:None -->
      Our <a href="" style="text-decoration: none;">Team</a>
   </p>
</body>
Posted by: Guest on August-26-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

Code answers related to "how to remove the link line in css"

Browse Popular Code Answers by Language