Question

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.

Was it helpful?

Solution

button:focus {
    outline: none;
}

or for all elements

*:focus {
    outline: none;
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top