删除Chrome自动完成功能的输入框,设置透明背景色

input:-webkit-autofill,

input:-webkit-autofill:hover,

input:-webkit-autofill:focus,

input:-webkit-autofill:active {

    -webkit-transition: "color 9999s ease-out, background-color 9999s ease-out";

    transition: "color 9999s ease-out, background-color 9999s ease-out";

    -webkit-transition-delay: 9999s;

    transition-delay: 9999s;

}

你可能感兴趣的:(删除Chrome自动完成功能的输入框,设置透明背景色)