Answers for "button remove disabled 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
0

disable button outline in css

button:focus {outline:0;}
Posted by: Guest on January-17-2021

Code answers related to "button remove disabled decoration"

Code answers related to "C"

Browse Popular Code Answers by Language