How to take a selection of a <input type="image">?

Asked

Viewed 39 times

0

I’ve been coding for the web not too long, and I can’t take a selection that stays when I click? Does anyone know how to take?

quando eu clico fica assim

  • 3

    In the CSS, outline: none.

1 answer

2

This is an Outline. Appears when the element receives :Focus

Solution: CSS

textarea:focus, input:focus{
    outline: none;
}

Source: "Source here"

Browser other questions tagged

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