how to get rid of outline of button code example
Example 1: removing the unwanted border button css
button,
button:active,
button:focus {
outline: none;
}
Example 2: css remove button outline
button:focus {outline:0;}
button,
button:active,
button:focus {
outline: none;
}
button:focus {outline:0;}