how to create a button without border in html code example
Example: 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)