Answers for "button outline on click remove"

3

how to get rid of button outline when clicked

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

html button remove border on click

.x-btn:focus, .button:focus, [type="submit"]:focus {
   outline: none;
}
Posted by: Guest on March-20-2020

Code answers related to "button outline on click remove"

Browse Popular Code Answers by Language