自定义checkbox样式

Posted qianxuebing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义checkbox样式相关的知识,希望对你有一定的参考价值。

通过选中时添加背景图片自定义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样式的主要内容,如果未能解决你的问题,请参考以下文章

请教自定义CheckBox样式的问题

关于input 的选中,自定义input[type="checkbox"]样式

html自定义checkbox样式

自定义checkbox样式

自定义checkbox, radio样式

[ HTML5 表单样式 checkbox | radio ] 自定义checkbox 与radio样式实现思路