默认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%;
}

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_43222587/article/details/106421076
今日推荐