no border on click css code example
Example 1: css remove border input focus
textarea:focus, input:focus{
outline: none;
}
Example 2: how to get rid of button outline when clicked
*:focus {
outline: 0 !important;
}
Example 3: remove clicked button border
<button style="outline: none;"></button>