Skip to content

Instantly share code, notes, and snippets.

@tessalt
Created March 21, 2013 19:47
Show Gist options
  • Save tessalt/5216096 to your computer and use it in GitHub Desktop.
Save tessalt/5216096 to your computer and use it in GitHub Desktop.
styled checkboxes
input[type='checkbox'] {
opacity: 0;
float: left;
width: 18px;
}
input[type='checkbox'] + label {
margin: 0;
clear: none;
padding: 5px 0 4px 24px;
cursor: pointer;
background: url('unchecked.gif') left center no-repeat;
}
input[type='checkbox']:checked + label {
background-image: url('checked.gif');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment