Chrome浏览器,处理input自动填充时带黄色背景色

/*Chrome浏览器打开网页,input自动赋值时,会带上屎黄色的背景色,下面是通过延长增加自动填充背景色的方式, 让用户感受不到样式的变化*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition-delay: 99999999s;
  -webkit-transition: color 99999999s ease-out, background-color 99999999s ease-out;
}

猜你喜欢

转载自www.cnblogs.com/daihu/p/10108608.html