how to remove button seleted border in css 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;