Remove Safari/Chrome textinput/textarea glow

后端 未结 13 937

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

    I just needed to remove this effect from my text input fields, and I couldn't get the other techniques to work quite right, but this is what works for me;

    input[type="text"], input[type="text"]:focus{
                outline: 0;
                border:none;
                box-shadow:none;
    
        }
    

    Tested in Firefox and in Chrome.

提交回复
热议问题