針對於CheckBox默認樣式的改變,和選中狀態的改變
<label class="checkBox"><input type="checkbox">全選</label>
input[type='checkbox']{ width: 20px; height: 20px; background-color: #fff; -webkit-appearance:none; border: 1px solid #c9c9c9; border-radius: 2px; outline: none; }
.checkBox input[type=checkbox]:checked{ background: url("../images/checkbox_icon.png")no-repeat center; }