сss (9) сss3 (14) ajax (2) css (42) drupal (7) Fix IE6 (4) font (4) html (23) javascript (22) jQuery (15) js (5) less (1) php (1) scss (1) soft (2) vue (1) webstorm (1) wordpress (1)

Стилизация чекбокса

input[type="checkbox"] {
    display: none;
}
input[type="checkbox"] + label {
    display: inline-block;
    padding-left: 1em;
    background: url(checkbox_states_spritesheet.png) left center no-repeat;
    cursor:pointer;
}

input[type="checkbox"]:checked + label {
    background: url(check_radio_sheet.png) -1em center no-repeat;
}