Chrome 自动填充的表单是淡黄色的背景,有方法自定义
修改:有辦法直接修改。
input:-webkit-autofill {
background-color: rgb(250, 255, 189);
background-image: none;
color: rgb(0, 0, 0);
}
貌似不能覆蓋默認樣式,但是可以用別的樣式曲線達到目的。
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px white inset;
}
效果: