html checkBox自定义格式修改

css代码

 input[type=checkbox]{
            appearance: none;
            -moz-appearance: none;
            -ms-progress-appearance: none;
            -webkit-appearance: none;
            outline: none;
            display: inline-block;
            width: 16px ;
            height: 16px ;
        }

input[type=checkbox]:checked{
            background: url("/images/login/[email protected]") no-repeat;     //替换图片
            background-position: center center;                            //图片位置
            background-size: contain;                                      //图片大小
            background-color: #2877ff;
        }

选中前后效果展示

在这里插入图片描述 在这里插入图片描述

发布了250 篇原创文章 · 获赞 88 · 访问量 19万+

猜你喜欢

转载自blog.csdn.net/zjw_python/article/details/91863685
今日推荐