我们不使用任何图片,来给某个复选按钮设置样式:
作者:
臭臭臭魁 | 来源:发表于
2016-04-05 11:25 被阅读10次
css
<style>
input[type=checkbox] {display: none;}
input[type=checkbox] + label:before {
content: "";
border: 1px solid #000;
font-size: 11px;
line-height: 15px;
margin: 0 5px 0 0;
height: 15px;
width: 15px;
text-align: center;
vertical-align: middle;
display:inline-block;
}
input[type=checkbox]:checked + label:before {
content: "\2713";
}
</style>
html
<font size="3">
<input id="check" type="checkbox" name="check">
<label for="check">Checkbox</label>
</font>
本文标题:我们不使用任何图片,来给某个复选按钮设置样式:
本文链接:https://www.haomeiwen.com/subject/ocjplttx.html
网友评论