Answers for "how to remove underline from link button in html"

C
1

how to remove button decoration

button {
    border: none;
}

button:focus {
    border: none;
    outline: none;
}

button:focus{
    outline:none !important;
}
(add !important if it is used in Bootstrap)
Posted by: Guest on April-29-2020
0

how to remove underline from link in html

how to remove underline from a tag:

<a style="text-decoration:none" href="http://Example.Microsoft.Com">nonunderlinedhyperlink</a>
Posted by: Guest on October-09-2021

Code answers related to "how to remove underline from link button in html"

Code answers related to "C"

Browse Popular Code Answers by Language