remove black border around button when clicked css code example
Example 1: remove box around button when clicked
* {
outline: none;
}
Example 2: remove clicked button border
<button style="outline: none;"></button>
* {
outline: none;
}
<button style="outline: none;"></button>