css remove outline after clickin on button code example
Example 1: how to get rid of button outline when clicked
*:focus {
outline: 0 !important;
}
Example 2: css remove button outline
button:focus {outline:0;}
*:focus {
outline: 0 !important;
}
button:focus {outline:0;}