自定义radio/checkbox样式
Posted mengfangui
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义radio/checkbox样式相关的知识,希望对你有一定的参考价值。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>自定义radio/checkbox样式</title>
<style>
*{
padding: 0;
margin: 0;
}
input[type=checkbox]{
display: none;
}
/*未选中样式*/
.checkbox{
color: green;
}
/*选中样式((可以设置背景图片等)*/
input[type=checkbox]:checked + .checkbox{
color: red;
}
</style>
</head>
<body>
<label>
<input type="checkbox" name="" id="" value="" />
<span class="checkbox">是否选择</span>
</label>
</body>
</html>
以上是关于自定义radio/checkbox样式的主要内容,如果未能解决你的问题,请参考以下文章