去除Chrome浏览器记住账号密码自动填充的背景色

691 阅读1分钟

input {
  background-color: rgba(255, 255, 255, 0) !important;
}

input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill:focus {
  -webkit-text-fill-color: #333 !important;
}

css文件中加入如上代码