when click somewhere else the border disappears, tried onfocus none, but didn\'t help, how to make ugly button border disappear when click on?
input[type="button"]{ outline:none; } input[type="button"]::-moz-focus-inner { border: 0; }
Demo
/* Don't forget! User accessibility is important */ input[type="button"]:focus { /* your custom focused styles here */ }