0

I am not sure if is there a way to solve it. but my Google chrome creates a border when I click on a button, that calls a function.

enter image description here

The image bellows shows the blue border that is being showed.

JDB
  • 23,357
  • 5
  • 68
  • 116
Anderson
  • 59
  • 1
  • 5

1 Answers1

3
button:focus {
    outline: none;
}

or for all elements

*:focus {
    outline: none;
}
sfletche
  • 42,426
  • 25
  • 94
  • 115