如何解决在chrome中自动完成表单后input出现黄色背景

Posted xiaopingOOO

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何解决在chrome中自动完成表单后input出现黄色背景相关的知识,希望对你有一定的参考价值。

可以对input:-webkit-autofill使用足够大的纯色内阴影来覆盖input输入框的黄色背景;如:

代码如下:
  
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px white inset;
border: 1px solid #CCC!important;
}

以上是关于如何解决在chrome中自动完成表单后input出现黄色背景的主要内容,如果未能解决你的问题,请参考以下文章