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;
}

效果:

posted @ 2015-12-08 11:12  星辰之力  阅读(388)  评论(0编辑  收藏  举报