border outline when a button is active code example
Example 1: diable focus button css
*:focus {
outline: 0 !important;
}
Example 2: remove border on button focus
button:focus {outline:0;}
*:focus {
outline: 0 !important;
}
button:focus {outline:0;}