input自动填充背景色
谷歌浏览器自动填充密码的背景色一直都是黄色,假如我们想去除默认样式。
css
:-webkit-autofill {
// 文字颜色
-webkit-text-fill-color: #fff !important;
//设置5000s后改变填充密码框的背景色,唯一使背景透明的方法
transition: background-color 5000s ease-in-out 0s;
}