I'm trying to remove the blue border from the button which appears every time the button is clicked. No matter what I try it doesn't go. Please see image below for details:
Any info on why this issue occurs?
I'm trying to remove the blue border from the button which appears every time the button is clicked. No matter what I try it doesn't go. Please see image below for details:
Any info on why this issue occurs?
The solution is pure CSS:
outline: unset;
You might need to add it with the :focus selector and/or :active.
The outline is used by default in a lot of browsers (especially for mobile UX)