Answers for "how to remove button decoration"

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
4

remove button default border css

button:focus { outline: none; }
Posted by: Guest on September-09-2020

Code answers related to "how to remove button decoration"

Code answers related to "C"

Browse Popular Code Answers by Language