how to remove border from input after clicking button code example
Example 1: css get rid of button outline on click
button:hover, button:focus {
outline: none;
}
Example 2: css remove link border on click
a:active, a:focus {
outline: 0;
border: none;
-moz-outline-style: none;
}