去除input输入框自动填充时的背景色

2,811 阅读1分钟

input的自动填充功能会带有背景色,这样会影响美观

image.png

要想去掉这个背景色有两种方法:

1.给input设置属性autocomplete="off",意为关闭自动填充,不记录之前输入过的值。完全可以解决背景色的问题,但是没有自动填充功能体验相对来说不是很友好

2.通过css样式:

input:-webkit-autofill {
  box-shadow:0 0 0 1000px transparent inset !important; // 颜色可以随意,这里设置的是透明色
}
input:-internal-autofill-previewed,
input:-internal-autofill-selected {
-webkit-text-fill-color: #333 !important; // 可加可不加
  transition: background-color 5000s ease-in-out 0s !important;
}