ie11 hack写法

@media all and (-ms-high-contrast: none) {}

checkbox

  1. <div>
  2. <input id="a1" type="checkbox" />
  3. <label for="a1">a1</label>
  4. </div>
  5. <style>
  6. // 选中的
  7. .checkbox input:checked + label {
  8. background-image: url('checked.png');
  9. }
  10. // 未选中的
  11. .checkbox input + label {
  12. background: url('unChecked.png') left center no-repeat;
  13. background-size: 20px 20px;
  14. padding-left: 20px;
  15. }
  16. </style>

案例:tab切换(radio),tree(checkbox)