修改浏览器自动填充的input背景色

修改前:
修改浏览器自动填充的input背景色_第1张图片
使用浏览器自动填充账号密码时,input样式会变为自动填充色。

修改后:
修改浏览器自动填充的input背景色_第2张图片
代码(亲测有效!!):

.ant-input {
    &:-webkit-autofill {
        background: transparent;
        transition: background-color 50000s ease-in-out 0s;
        -webkit-text-fill-color: #fff;
    }
}

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