How to remove this orange borders from buttons which appears on click? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 7

How to remove this orange borders from buttons which appears on click?

https://code.sololearn.com/WevQ2ychFm4L/?ref=app

8th Apr 2019, 9:41 PM
Sanja Malovic
Sanja Malovic - avatar
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
8th Apr 2019, 9:47 PM
Victor Andersson
Victor Andersson - avatar
+ 3
That helped, thanks!
8th Apr 2019, 9:53 PM
Sanja Malovic
Sanja Malovic - avatar