修改单选框的默认样式
html
<input type="radio" name="sh" id="yes" value="2" checked="checked" />
<label class="radLabel" for="yes"></label>
<input type="radio" name='sh' id="no" value="3" />
<label class="radLabel" for="no"></label>
CSS样式
input[type="radio"]{
display: none;
}
input[type="radio"]+label:before {
display: inline-block;
content: "";
width: 10px;
height: 10px;
bord