Removing input background colour for Chrome autocomplete?

前端 未结 30 1889
失恋的感觉
失恋的感觉 2020-11-22 04:02

On a form I\'m working on, Chrome is auto-filling the email and password fields. This is fine, however, Chrome changes the background colour to a pale yellow colour.

30条回答
  •  伪装坚强ぢ
    2020-11-22 04:29

    i use this. work for me. remove yellow background of field.

    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active,
    input:-webkit-autofill:valid,
    select:-webkit-autofill,
    select:-webkit-autofill:hover,
    select:-webkit-autofill:focus
    {
        -webkit-transition-delay: 99999s;
        -webkit-text-fill-color:#D7D8CE;
    }
    

提交回复
热议问题