css button click frame code example
Example 1: css get rid of button outline on click
button:hover, button:focus {
outline: none;
}
Example 2: how to remove outline on button
outline: none;
button:hover, button:focus {
outline: none;
}
outline: none;