ios h5 input框自动填充会有黄色背景块

发布时间 2023-06-02 13:51:00作者: 郭大蛋子

ios h5 input框自动填充会有黄色背景块(比如验证码发过来可以自动填充的时候)

取消黄色块

input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
        -webkit-transition-delay:99999s;
        -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
 }