Answers for "how to remove text decoration from buttons 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

Code answers related to "how to remove text decoration from buttons in html"

Code answers related to "C"

Browse Popular Code Answers by Language