remove border on click a tag code example
Example 1: html button remove border on click
.x-btn:focus, .button:focus, [type="submit"]:focus {
outline: none;
}
Example 2: remove on click border
outline:none;
.x-btn:focus, .button:focus, [type="submit"]:focus {
outline: none;
}
outline:none;