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>
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>
Add text-decoration:none
, it will remove underline.
a
{
text-decoration:none;
}
<dt class="center">Value
<dt class="center"><a href="/test">Details</a>
Just use text-decoration: none
in your CSS or styling.
It will remove the underline from your link:
a { text-decoration: none }