remove blue box by clicking on icon or button type image

-1

Greetings when I click on a button-type image from a mobile device this blue box comes out

How would you do it so that it would not come out or at least change the color?

    
asked by jkjul 21.08.2018 в 07:47
source

2 answers

0

Test in the CSS

a { -webkit-tap-highlight-color: rgba(0,0,0,0); }
    
answered by 22.08.2018 / 00:03
source
0

Try adding this to the css:

textarea, select, input, button { 
    outline: none;
}
:focus { 
    outline-color: transparent; 
    outline-style: none;
}
    
answered by 21.08.2018 в 08:21