button on click no border code example
Example 1: css get rid of button outline on click
button:hover, button:focus {
outline: none;
}
Example 2: how to remove border on button click
.btnName{
outline: none;
}
Example 3: remove clicked button border
<button style="outline: none;"></button>