Answers for "how do i remove the underline from a link using bootstrap and html?"

2

bootstrap link no underline

<a href="#" class="text-decoration-none">
    <!-- That is all -->
</a>
Posted by: Guest on December-06-2020
0

bootstrap link remove underline

a:hover, /* OPTIONAL*/
a:visited,
a:focus
{text-decoration: none !important;}
Posted by: Guest on February-19-2021

Code answers related to "how do i remove the underline from a link using bootstrap and html?"

Browse Popular Code Answers by Language