表单选择后变黄色背景如何去掉
程序员文章站
2022-04-06 11:39:23
...
1.
解决方法:给input:-webkit-autofill设置足够大的纯色内阴影来覆盖input输入框的黄色背景,如:
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px #fff inset;
border: 1px solid #CCC!important;
}
2. 解决方法 2
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
-webkit-transition-delay: 9999s;
-webkit-transition: color 9999s ease-out, background-color 9999s ease-out;
}
推荐阅读