onclick to delete the border code example
Example 1: how to remove border on button click
.btnName{
outline: none;
}
Example 2: how to get rid of button outline when clicked
*:focus {
outline: 0 !important;
}
.btnName{
outline: none;
}
*:focus {
outline: 0 !important;
}