纯css3自定义复选框checkbox样式

来源:互联网 发布:趣分期 网络小贷拍照 编辑:程序博客网 时间:2024/04/29 08:14

html:部分:

<div class=" tiaojianlist03">
<input name="checkbox" value="Item 1" type="checkbox" >
</div>


css:部分

.tiaojianlist03{ position: relative; }
.tiaojianlist03 input[type=checkbox]{ position: absolute; width: 12px; height: 12px; border: 1px #dfdfdd solid; -webkit-appearance: none;}
.tiaojianlist03 input[type=checkbox]:before{ position:absolute;content: ''; width: 12px; height: 12px; top: 0px;}
.tiaojianlist03 input[type=checkbox]:checked:before {color: #007aff; background: url(../images/regisgg_03.png) no-repeat;}

0 0
原创粉丝点击