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

自制 checkbox复选框

时间:2014-08-07 12:04:49      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:http   for   2014   ar   html   line   htm   type   

CSS:
.checkbox {
display: none;
*display: inline-block;
}

.label:before {
content: "";
margin: 0 .5em 0 0;
float: left;
width: 1em;
height: 1em;
line-height: 1.1em;
text-align: center;
background: #fff;
border: 1px solid #222;
border-radius: 3px;
}
.checkbox:checked + .label:before {
content: "?";
}

 

HTML:

<input class="checkbox" id="checkbox" type="checkbox"><label class="label" for="checkbox">漩涡</label>

 

IE6、IE7不支持,IE8不能选中,需要js实现

转自http://modernweb.com/2014/07/30/5-things-wont-believe-built-css/

自制 checkbox复选框,布布扣,bubuko.com

自制 checkbox复选框

标签:http   for   2014   ar   html   line   htm   type   

原文地址:http://www.cnblogs.com/damade/p/3896377.html

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