how to remove outline around buttons code example
Example 1: remove border on button focus
button:focus {outline:0;}
Example 2: how to remove border from selected button
outline: none;
button:focus {outline:0;}
outline: none;