美文网首页
input登陆的时候遗留黄色背景样式修改

input登陆的时候遗留黄色背景样式修改

作者: lvyweb | 来源:发表于2018-12-29 10:34 被阅读9次

    标签(空格分隔): css


    input表单添加了背景图片,自动填充会填充一个黄色背景,console查看发现是浏览器自带

    input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
        background-color: rgb(250, 255, 189);
        background-image: none;
        color: rgb(0, 0, 0);
    }
    

    修改其默认样式为自己想要的颜色

    input:-webkit-autofill{
        -webkit-box-shadow: 0 0 0px 1000px skyblue inset !important;
        -webkit-text-fill-color: #fff;
    }
    

    相关文章

      网友评论

          本文标题:input登陆的时候遗留黄色背景样式修改

          本文链接:https://www.haomeiwen.com/subject/gerulqtx.html