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

自定义checkbox样式

时间:2018-10-22 12:50:38      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:分享   16px   none   type   通过   box   hidden   content   str   

通过选中时添加背景图片自定义CheckBox样式

效果:

技术分享图片

CSS样式:

 

 <style type="text/css>
        
        label {
            width: 10%;
            display: flex;
            display: -webkit-flex;
            display: -moz-flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
        }
        
        label input[type=checkbox] {
            width: 15px;
            height: 15px;
            overflow: hidden;
            background: #fff;
            appearance: none;
            -webkit-appearance: none;
            border: 1px solid #808080;
            outline: none;
            margin-right: 5px;
            margin-top: 0;
        }
        
        input[type=checkbox]:checked {
            appearance: none;
            -webkit-appearance: none;
            background-image: url(./Images/btn-blue_03.png);
            background-position: center;
            background-repeat: no-repeat;
            background-size: 100%;
            border-radius: 4px;
            border: 0;
            overflow: hidden;
        }
    </style>

 

  

 

html结构:
<body>
  <label>
    <input type="checkbox" name="type" checked>
    <span>one</span>
  </label>
  <label>
    <input type="checkbox" name="type">
    <span>two</span>
  </label>
</body> 

  

 
 

 

自定义checkbox样式

标签:分享   16px   none   type   通过   box   hidden   content   str   

原文地址:https://www.cnblogs.com/qianxuebing/p/9829309.html

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