Pergunta

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.

Foi útil?

Solução

button:focus {
    outline: none;
}

or for all elements

*:focus {
    outline: none;
}
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top