使用谷歌浏览器的记住密码功能后input表单内会自动填充默认样式

解决办法:
input:-webkit-autofill , textarea:-webkit-autofill, select:-webkit-autofill {

-webkit-text-fill-color: #ededed !important;  
-webkit-box-shadow: 0 0 0px 1000px transparent  inset !important;  
background-color:transparent;  
background-image: none;  
 transition: background-color 50000s ease-in-out 0s; 

}
input {
background-color:transparent;
}

解决思想是延迟这个背景色出现。

猜你喜欢

转载自blog.csdn.net/wangdong9395/article/details/108448599