解决 google 浏览器记住密码导致输入框样式改变(变成淡黄色背景)

 直接在页面上使用css代码:

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;  
}

猜你喜欢

转载自www.cnblogs.com/Assist/p/11075835.html