标签(空格分隔): css
input表单添加了背景图片,自动填充会填充一个黄色背景,console查看发现是浏览器自带
input:-webkit-autofill, textarea:-webkit-autofill, select:-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 skyblue inset !important;
-webkit-text-fill-color: #fff;
}
网友评论