默认checkbox样式修改

input[type="checkbox"]{
    width: 16px;
    height: 16px;
    background-color: #fff;
    -webkit-appearance: none;
    border: 1px solid #22bcee;
    border-radius: 2px;
    outline: none;
    box-sizing: border-box;
}
input[type=checkbox]:checked{
    background: url(../../img/checked2.png) no-repeat center center;
    background-size: 100% 100%;
}

在这里插入图片描述

你可能感兴趣的:(html,css,checkbox)