多选框样式

/*多选框样式*/
.checkbox-style(){
  input[type="checkbox"] {
    text-indent:0;
    margin: 0;
     13px;
    height: 13px;
    text-align:center;
    display: inline-block;
    vertical-align: middle;
    line-height: 13px;
    position: relative;
  }
  input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
     100%;
    height: 100%;
    border: 1px solid #bdbfc2;
  }
  input[type="checkbox"]:checked::before {
    content: "2713";
    background-color: #12BA1D;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
     100%;
    font-size: 10px;
    font-weight: bold;
    outline: none;
    border-color:#ccc;
    border: 1px solid #bdbfc2;
  }
}
原文地址:https://www.cnblogs.com/wxy0715/p/12376771.html