解决浏览器记住密码input背景色问题

input:-webkit-autofill {
    -webkit-text-fill-color: #acfff2 !important;/*浏览器记住密码的字的颜色*/
    transition: background-color 5000s ease-in-out 0s;/*通过延时渲染背景色变相去除背景颜色*/
    caret-color: #acfff2;/*光标颜色*/
}

input:focus { outline: none; }/*外边框线去除*/

参考链接1

参考链接2

发布了70 篇原创文章 · 获赞 56 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/weixin_44251396/article/details/103852323