white border around button when clicked css code example
Example 1: how to get rid of button outline when clicked
*:focus {
outline: 0 !important;
}
Example 2: html button remove border on click
.x-btn:focus, .button:focus, [type="submit"]:focus {
outline: none;
}