多选框样式

/*多选框样式*/
.checkbox-style(){
  input[type="checkbox"] {
    text-indent:0;
    margin: 0;
    width: 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;
    width: 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;
    width: 100%;
    font-size: 10px;
    font-weight: bold;
    outline: none;
    border-color:#ccc;
    border: 1px solid #bdbfc2;
  }
}

猜你喜欢

转载自www.cnblogs.com/wxy0715/p/12376771.html
今日推荐