how to get rid of a border on a button code example
Example 1: how to remove button decoration
button {
border: none;
}
button:focus {
border: none;
outline: none;
}
button:focus{
outline:none !important;
}
(add !important if it is used in Bootstrap)
Example 2: css remove button outline
button:focus {outline:0;}