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.
The image bellows shows the blue border that is being showed.
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.
The image bellows shows the blue border that is being showed.
button:focus {
outline: none;
}
or for all elements
*:focus {
outline: none;
}