how to remove white outline around pressed button css code example
Example 1: css remove button outline
button:focus {outline:0;}
Example 2: how to remove outline on button
outline: none;
button:focus {outline:0;}
outline: none;