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