CheckBox样式修改

来源:互联网 发布:exo中国四子的关系知乎 编辑:程序博客网 时间:2024/05/29 16:49
input[type="checkbox"] {
            outline: none;
            width: 20px;
            height: 20px;
            -webkit-appearance: none;  /*清除复选框默认样式*/
            background:  url(../../static/images/check.png);   /*复选框的背景图,就是上图*/
            vertical-align: middle;
            border: none;
            border-radius: 3px;
        }
        input[type="checkbox"]:checked {
            outline: none;
            background:  url(../../static/images/checked.png);

        }




原创粉丝点击