0

Is it possible to remove the underline when displaying a link on an html page.

<dt class="center">Value
<dt class="center"><a href="/test">Details</a>
len8200
  • 85
  • 3
  • Does this answer your question? [How to remove underline from a link in HTML?](https://stackoverflow.com/questions/10853881/how-to-remove-underline-from-a-link-in-html) – Henry Woody May 11 '20 at 20:34

2 Answers2

3

Add text-decoration:none, it will remove underline.

a
{
    text-decoration:none;
}
<dt class="center">Value
<dt class="center"><a href="/test">Details</a>
Ferin Patel
  • 2,356
  • 2
  • 9
  • 38
2

Just use text-decoration: none in your CSS or styling. It will remove the underline from your link:

a { text-decoration: none }
Roy
  • 1,282
  • 8
  • 30