CSS改变checkbox样式

来源:互联网 发布:淘宝食品许可证 编辑:程序博客网 时间:2024/04/28 22:19

CSS改变checkbox样式,代码如下:

Html代码

<div class="hv_box"><input type="checkbox" class="hc_checkbox" id="ck1" value="1322560"/><lable for="ck1"></lable></div>

注意:id的值随意,但是要和lable中for值一样,不然找不到

多个选择框时,id可以使用不同的值,但是要和lable中for值一样

CSS

.hc_box{width: 18px;height: 90px;float: left;position: relative;margin-right: 10px;}
.hc_checkbox{position: absolute;width: 18px;height: 18px;visibility: hidden;top: 0px;}.hc_checkbox+label {display: inline-block;width: 18px;height: 18px;background:url(../img/check_icon.png) no-repeat;background-position: -18px 0px;margin-top: 0px;}.hc_checkbox:checked+label {background-position: 0px 0px;}

选择框图片


效果预览


0 0