input框自动填充内容背景颜色为黄色解决方法

871 阅读1分钟

chrome表单自动填充后,input文本框的背景会变成偏黄色的,这是由于chrome会默认给自动填充的input表单加上input:-webkit-autofill私有属性,然后对其赋予以下样式:

input:-webkit-autofill {
background-color: #FAFFBD;
background-image: none;
color: #000;
}

解决办法:

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