Remove Safari/Chrome textinput/textarea glow

后端 未结 13 919

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

    some times it's happens buttons also then use below to remove the outerline

    input:hover
    input:active, 
    input:focus, 
    textarea:active,
    textarea:hover,
    textarea:focus, 
    button:focus,
    button:active,
    button:hover
    {
        outline:0px !important;
    }
    

提交回复
热议问题