Answers for "delete outline on button css"

CSS
7

how to get rid of button outline when clicked

*:focus {
    outline: 0 !important;
}
Posted by: Guest on June-12-2020
0

disable button outline in css

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

Code answers related to "delete outline on button css"

Browse Popular Code Answers by Language