chrome/Edge input框记住密码后,样式覆盖住自定义样式的解决方案

193 阅读1分钟

记住密码后浏览器会给 input 添加一层# input:-internal-autofill-selected 自动填入 背景色和字体色试了很多方法效果都不太好

1749692200850.png

下面的类比较全面,都改了就不会有问题了

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #FFF !important;
    background-color: rgba(255, 255, 255, 0); /* 指定背景颜色 */
    transition: background-color 5000s ease-in-out 0s; /* 防止背景颜色闪烁 */
}

1749693362964.png