Answers for "button decoration off"

CSS
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 "button decoration off"

Browse Popular Code Answers by Language