修改checkbox的样式
Posted luziluck
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改checkbox的样式相关的知识,希望对你有一定的参考价值。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>chec</title>
<style>
*{margin:0px;padding: 0px;}
span.wrappicinput {position: relative;}
.wrappicinput .input_check {position: absolute;width: 12px;height: 12px;visibility: hidden;}
.wrappicinput .labelcheck {position: absolute;width: 12px;height: 12px;}
.wrappicinput .input_check+label {display: inline-block;width: 12px;height: 12px;background: url(./easyui/themes/default/images/tree_icons.png) no-repeat;background-position: -210px -21px;}
.wrappicinput .input_check:checked+label {background-position: -226px -21px;}
</style>
</head>
<body>
<span class="wrappicinput">
<input type="checkbox" class="input_check" id="check1">
<label class="labelcheck" for="check1" ></label>
</span>
</body>
</html>
以上是关于修改checkbox的样式的主要内容,如果未能解决你的问题,请参考以下文章