Skip to content

Instantly share code, notes, and snippets.

@twifkak
Forked from chriscoyier/dabblet.css
Created December 11, 2012 21:43
Show Gist options
  • Save twifkak/4262454 to your computer and use it in GitHub Desktop.
Save twifkak/4262454 to your computer and use it in GitHub Desktop.
/* Checkbox Hack */
input[type=checkbox] {
display: none;
}
label {
display: block;
background: green;
cursor: pointer;
}
/* Toggled State */
input[type=checkbox]:checked ~ label {
background: red;
}
<br><br>
<input type="checkbox" id="toggle-1">
<label for="toggle-1">
I'm a toggle
</label>
{"view":"split-vertical","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment