Remove Safari/Chrome textinput/textarea glow

后端 未结 13 844

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:29

    This solution worked for me.

    input:focus {
        outline: none !important;
        box-shadow: none !important;
    }
    
    0 讨论(0)
提交回复
热议问题