how to remove border and outline of a button on focus code example
Example 1: remove border on button focus
button:focus {outline:0;}
Example 2: how to remove outline on button
outline: none;
button:focus {outline:0;}
outline: none;