Created
June 13, 2014 16:45
-
-
Save DomenicoColandrea86/609acb17c74e0c80b591 to your computer and use it in GitHub Desktop.
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
| <html> | |
| <head> | |
| <title>Checkbox</title> | |
| <style> | |
| input[type=checkbox] { | |
| display:none; | |
| } | |
| input[type=checkbox] + label | |
| { | |
| background: #999; | |
| height: 16px; | |
| width: 16px; | |
| display:inline-block; | |
| padding: 0 0 0 0px; | |
| } | |
| input[type=checkbox]:checked + label | |
| { | |
| background: #0080FF; | |
| height: 16px; | |
| width: 16px; | |
| display:inline-block; | |
| padding: 0 0 0 0px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <p> | |
| <input type='checkbox' name='thing' value='valuable' id="thing"/><label for="thing"></label> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment