remove black border when click on button css code example
Example 1: how to remove outline on button
outline: none;
Example 2: html button remove border on click
.x-btn:focus, .button:focus, [type="submit"]:focus {
outline: none;
}
outline: none;
.x-btn:focus, .button:focus, [type="submit"]:focus {
outline: none;
}