Created
March 21, 2013 19:47
-
-
Save tessalt/5216096 to your computer and use it in GitHub Desktop.
styled checkboxes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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