input 在 chrome 下 , 自动填充后,默认样式清除

Posted digdeep

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input 在 chrome 下 , 自动填充后,默认样式清除相关的知识,希望对你有一定的参考价值。

讨厌的自动填充背景色:

技术图片

 

 解决方法:

<style type="text/css">
input:-internal-autofill-selected {
    background-color: white !important;
    background-image: none !important;
    color: rgb(0, 0, 0) !important;
    box-shadow: inset 0 0 0 1000px white !important;
}
input:-webkit-autofill {
 box-shadow: 0 0 0px 1000px white inset !important;
}  
input:-webkit-autofill:focus {
 box-shadow: 0 0 0px 1000px white inset !important;
}  
</style>   

效果:

技术图片

 

 

参考:https://blog.csdn.net/xiao_yu_liu/article/details/100582478

https://www.cnblogs.com/chenfanga/p/11600251.html

 

以上是关于input 在 chrome 下 , 自动填充后,默认样式清除的主要内容,如果未能解决你的问题,请参考以下文章

解决chrome浏览器对于自动填充的input表单添加的默认的淡黄色背景问题

chrome表单自动填充导致input文本框背景变成偏黄色问题解决

Chrome表单文本框自动填充黄色背景色样式

chrome浏览器 input 禁止自动填充 autocomplete="off" 无效

chrome表单自动填充导致input文本框背景变成偏黄色问题解决

input placeholder 在chrome 浏览器自动填充时,背景色覆盖原有背景图片问题。