改变checkbox在网页中的默认样式
/* 改变复选框的默认样式 /
input[type=checkbox]{
width:15px;
height:15px;
-webkit-appearance:none;
background-color:#fff;
border: 1px solid #c9c9c9;
border-radius: 2px;
outline: none;
}
/ 复选框被选中的样式*/
input[type=checkbox]:checked{
background: url(images/selected.png)no-repeat center;
background-size:14px 14px;
}