no underline link bootstrap code example
Example 1: bootstrap link no underline
<a href="#" class="text-decoration-none">
<!-- That is all -->
</a>
Example 2: bootstrap link remove underline
a:hover, /* OPTIONAL*/
a:visited,
a:focus
{text-decoration: none !important;}