去掉自动填充游览器自动填充的输入框的背景色

38 阅读1分钟

`input:-webkit-autofill,

input:-webkit-autofill:hover,

input:-webkit-autofill:focus,

input:-webkit-autofill:active {

-webkit-transition-delay: 99999s;

-webkit-transition: color 99999s ease-out, background-color 99999s ease-out;

}` 问题图:游览器自动填充的时候 会带有背景色, 而自己输入的则没有背景色

image.png

效果图

image.png