button focus border none code example
Example 1: css remove border input focus
textarea:focus, input:focus{
outline: none;
}
Example 2: diable focus button css
*:focus {
outline: 0 !important;
}
textarea:focus, input:focus{
outline: none;
}
*:focus {
outline: 0 !important;
}