去除chome表单自动填充样式

Posted xtreme

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了去除chome表单自动填充样式相关的知识,希望对你有一定的参考价值。

CSS:

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active { /* 延迟动画 */
    -webkit-transition-delay: 9999s;
    transition-delay: 9999s;
    -webkit-transition: color 9999s ease-out, background-color 9999s ease-out;
    transition: color 9999s ease-out, background-color 9999s ease-out;
}

input:-webkit-autofill { /* 阴影透明,背景色效果 */
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    box-shadow: 0 0 0px 1000px transparent inset;
    border: 1px solid #ccc !important;
}

 

以上是关于去除chome表单自动填充样式的主要内容,如果未能解决你的问题,请参考以下文章