美文网首页
浏览器input 自动填充的背景颜色改变以及字体颜色改变

浏览器input 自动填充的背景颜色改变以及字体颜色改变

作者: chouchou723 | 来源:发表于2020-04-21 15:20 被阅读0次

因为需求原因表单是白色背景,但是浏览器的自动填充导致字体也是白色冲突,特此记录一下更改的效果


aaa.png
input:-internal-autofill-previewed,
input:-internal-autofill-selected {
    -webkit-text-fill-color: black !important;
    transition: background-color 5000s ease-in-out 0s !important;
}
ttt.png

相关文章