0

When I tap the button, this orange box around the button shows up. Is there any way to prevent it from showing up? enter image description here

Talha Munir
  • 498
  • 1
  • 4
  • 16

2 Answers2

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

You could use the outline property :

.yourButton:focus{
   outline:none;
}
Dylan KAS
  • 4,840
  • 2
  • 15
  • 33