chrome input/textarea/select 输入框去除黄色背景

时间:2022-12-26 15:08:20

解决原理:使用足够大的纯色内阴影来覆盖input输入框的黄色背景

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset;
}

input[type=text]:focus, input[type=password]:focus, textarea:focus {
    -webkit-box-shadow: 0 0 0 1000px white inset;
}