When I tap the button, this orange box around the button shows up. Is there any way to prevent it from showing up? 
Asked
Active
Viewed 735 times
0
Talha Munir
- 498
- 1
- 4
- 16
-
2Show you code and what you already tried (CSS and HTML in this case, but mainly CSS) – Dylan KAS Jul 24 '19 at 07:07
2 Answers
3
You need to remove button border on focus by adding below css:
button:focus {outline:0;}
Vikas Jadhav
- 4,597
- 2
- 19
- 37
2