去除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表单自动填充样式的主要内容,如果未能解决你的问题,请参考以下文章

Chrome表单文本框自动填充黄色背景色样式

禁止 input 自动填充

解决chrome浏览器对于自动填充的input表单添加的默认的淡黄色背景问题

#-webkit-autofill##google#启用表单自动填充时,如何覆盖黄色背景

Perl CGI 日期和时间选择器,自动填充当前日期和时间

如何避免在 Chrome 中的表单中自动填充用户名/密码?