美文网首页
随笔:自定义复选框样式

随笔:自定义复选框样式

作者: 重新改的名字 | 来源:发表于2018-08-21 17:57 被阅读0次
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        /*自定义复选框样式*/
.chk_1 { 
    display: none;    
} 
 
.chk_1 + label { 
    background-color: #FFF; 
    border: 1px solid #d3d7da; 
    padding: 14px; 
    display: inline-block; 
    position: relative; 

} 
/*多选框被选中时修改样式*/
.chk_1:checked + label { 
    background: url('images/gou.png') center center no-repeat;
    background-color: #fb784c; 
    border: 1px solid #fb784c; 
    color: #243441; 
} 
    </style>
</head>
<body>
    <input  id="test1" class="TBCheckBox chk_1" type="checkbox">
    <label for="test1"></label>
</body>

------------------分割线--------------------
init by yc

相关文章

网友评论

      本文标题:随笔:自定义复选框样式

      本文链接:https://www.haomeiwen.com/subject/xvwjiftx.html