+ 7
How to remove this orange borders from buttons which appears on click?
2 Answers
+ 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!