button ugly border css code example
Example 1: html button remove border on click
.x-btn:focus, .button:focus, [type="submit"]:focus {
outline: none;
}
Example 2: remove box around button when clicked
* {
outline: none;
}
.x-btn:focus, .button:focus, [type="submit"]:focus {
outline: none;
}
* {
outline: none;
}