when click somewhere else the border disappears, tried onfocus none, but didn\'t help, how to make ugly button border disappear when click on?
Given the html below:
Submit
In the css style do the following:
.btn-without-border:focus { border: none; outline: none; }
This code will remove button border and will disable button border focus when the button is clicked.