码迷,mamicode.com
首页 > 其他好文 > 详细

多选框样式

时间:2020-02-28 13:38:01      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:order   put   isp   margin   text   input   play   nbsp   bsp   

/*多选框样式*/
.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;
  }
}

多选框样式

标签:order   put   isp   margin   text   input   play   nbsp   bsp   

原文地址:https://www.cnblogs.com/wxy0715/p/12376771.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!