Remove Safari/Chrome textinput/textarea glow

后端 未结 13 929

I am wondering if its possible to remove the default blue and yellow glow when I click on a text input / text area using CSS?

13条回答
  •  借酒劲吻你
    2020-11-28 18:10

    I experienced this on a div that had a click event and after 20 some searches I found this snippet that saved my day.

    -webkit-tap-highlight-color: rgba(0,0,0,0);
    

    This disables the default button highlighting in webkit mobile browsers

提交回复
热议问题