Horje
html button remove border on click Code Example
how to remove border on button click
.btnName{
	outline: none;
}
remove on click border
outline:none;
html button remove border on click
.x-btn:focus, .button:focus, [type="submit"]:focus {
   outline: none;
}
Source: theme.co
button remove border if click
<style>
input[type="button"]
{
    width:120px;
    height:60px;
    margin-left:35px;
    display:block;
    background-color:gray;
    color:white;
    border: none;
    outline:none;
}
</style>
remove clicked button border
<button style="outline: none;"></button>
html button remove border on click
button,
button:active,
button:focus {
  outline:none !important;
   box-shadow: none !important;
   outline-style: none !important;
}




Html

Related
bootstrap error message Code Example bootstrap error message Code Example
bootstrap alerts Code Example bootstrap alerts Code Example
route link prop vue Code Example route link prop vue Code Example
git stash pop name Code Example git stash pop name Code Example
td colspan all Code Example td colspan all Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9