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
  • 458
  • 3
  • 12

2 Answers2

3

You need to remove button border on focus by adding below css:

button:focus {outline:0;}
Vikas Jadhav
  • 4,326
  • 1
  • 15
  • 34
2

You could use the outline property :

.yourButton:focus{
   outline:none;
}
Dylan Kas
  • 3,300
  • 2
  • 12
  • 27