How to take a selection from an input type="image"?

0

I'm programming for the web not long ago, and I can not get a selection that stays when I click? Does anyone know how to take it?

    
asked by anonymous 15.05.2017 / 21:37

1 answer

2

This is an outline. Appears when element receives: focus

Solution: CSS

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

Source: "Source Here"

    
15.05.2017 / 21:41