chrome浏览器中自带input样式input:-internal-autofill-selected(修改input背景色)
方式一、使用box-shadow利用内阴影大小来遮盖
input:-webkit-autofill{ -webkit-box-shadow:0 0 0 1000px white inset !important; }
方式一、通过CSS3动画解决
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
-webkit-transition-delay: 111111s;
-webkit-transition: color 11111s ease-out, background-color 111111s ease-out;
}