remove button focus outline css code example
Example 1: diable focus button css
*:focus {
outline: 0 !important;
}
Example 2: css remove button outline
button:focus {outline:0;}
*:focus {
outline: 0 !important;
}
button:focus {outline:0;}