remove button border when pressed css design code example
Example 1: how to get rid of button outline when clicked
*:focus {
outline: 0 !important;
}
Example 2: remove clicked button border
<button style="outline: none;"></button>
*:focus {
outline: 0 !important;
}
<button style="outline: none;"></button>