how to eliminate bordee from button css code example
Example 1: remove button default border css
button:focus { outline: none; }
Example 2: removing the unwanted border button css
button,
button:active,
button:focus {
outline: none;
}
button:focus { outline: none; }
button,
button:active,
button:focus {
outline: none;
}