浏览器input 自动填充的背景颜色改变以及字体颜色改变
2020-04-21 本文已影响0人
chouchou723
因为需求原因表单是白色背景,但是浏览器的自动填充导致字体也是白色冲突,特此记录一下更改的效果
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