I have an issue with my website where when I hold down a button, the button is outlined with blue. I have tried this code but it did not work:
button {
outline: none !important;
}
and
button:focus {
outline: none !important;
}
Either way, I do not want to use that code because apparently it is bad for website accessibility.
Is there a way to get rid of the blue outline?
Thanks.