+ 7
How to remove this orange borders from buttons which appears on click?
2 Antworten
+ 4
I get no borders on iOS Safari so it’s likely browser specific.
You can add: ”outline: none;” to your button tag on focus. This usually removes the recent change where links and buttons receive a border of some color when they’ve been pressed.
i.e.
button:focused { outline: none; }
Hope it helped.
EDIT:
No Problem
+ 3
That helped, thanks!