button button no border on click code example
Example 1: how to get rid of button outline when clicked
*:focus {
outline: 0 !important;
}
Example 2: how to remove outline on button
outline: none;
*:focus {
outline: 0 !important;
}
outline: none;