remove border of button code example
Example 1: removing the unwanted border button css
button,
button:active,
button:focus {
outline: none;
}
Example 2: how to remove border on button click
.btnName{
outline: none;
}
button,
button:active,
button:focus {
outline: none;
}
.btnName{
outline: none;
}