浏览器记住密码输入框样式修改

81 阅读1分钟

登录网页时浏览器记住密码,输入框默认样式修改

前端开发中在使用chrome浏览器时,登录网站时如果使用记住密码功能之后,会发现input变成了浏览器默认样式,以下代码可以用作参考解决。

input:-webkit-autofill , textarea:-webkit-autofill, select:-webkit-autofill {
  color: powderblue !important;
  -webkit-text-fill-color: black !important;
  background-image: none;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  background-color:transparent;
  transition: background-color 50000s ease-in-out 0s;
}

over.