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

Chrome浏览器,通过延长过渡时间,实现input输入框自动填充背景色不变

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

你可能感兴趣的:(前端,css)