CSS - checkbox 样式

      .checkbox-wrap{
        position:relative
      }
      .checkbox-wrap::before{
        content: ‘‘;
        position: absolute;
        top: 8px;
        width: 22px;
        height: 22px;
        background: #fff;
        border: 1px solid #e6e6e6;
        z-index:1;
      }

      .checked::after{
        content: ‘‘;
        position: absolute;
        top: 8px;
        width: 22px;
        height: 22px;
        background:#5FB878 url("{{ asset(‘assets/admin/images/checked.png‘) }}") no-repeat center;
        background-size: contain;
        background-position-x: 0.5px;
        border: 1px solid #5FB878;
        z-index: 1;
      }

      .checkbox-wrap input[type=checkbox]{
        position:absolute;
        z-index:-1       
      }

相关推荐