How do I eliminate the Focus "shadow" from a <button></button>?

Asked

Viewed 587 times

5

After clicking the button this gets a shadow effect (bluish) around the same... I leave an image for you to understand my doubt.

How to remove this outer line?

1 answer

3


The button stays focused.

Use CSS:

*:focus{
    outline:0;
}
  • 1

    "Problem" solved. I appreciate your availability.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.