My website is facing an issue where holding down a button causes it to be outlined in blue. Despite trying the following code snippet without success:
button {
outline: none !important;
}
I have also attempted:
button:focus {
outline: none !important;
}
I am hesitant to use this code as it may negatively impact website accessibility.
Is there an alternative way to remove the blue outline?
Appreciate any help.