html,input输入框自动填充后有背景色,firefox和chrome 去除方法

登录页面,帐号密码的input。因为浏览器用记忆功能,在选择记住的的帐号密码的时候。chrome 上会出现灰蓝色的背景填充input。firefox 上会出现黄色的背景颜色填充input

解决

/* chrome */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 100px white inset;
    box-shadow: 0 0 0px 100px white inset;
}
/* firefox */
input {
    filter: none !important;
}

你可能感兴趣的:(我了解的HTML,html)