Domanda

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.

È stato utile?

Soluzione

button:focus {
    outline: none;
}

or for all elements

*:focus {
    outline: none;
}
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top