Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Last active January 18, 2017 12:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save indreklasn/7bb52d24ef1a4f5f4a99da23e922d314 to your computer and use it in GitHub Desktop.
Save indreklasn/7bb52d24ef1a4f5f4a99da23e922d314 to your computer and use it in GitHub Desktop.
<label>
<input type="checkbox" name="terms">
<span class="fake-checkbox"></span>
<span>Do you accept the terms?</span>
</label>
<style>
input[type="checkbox"] {
/* hide it somehow */
}
input[type="checkbox"] + .fake-checkbox {
/* style when not checked */
}
input[type="checkbox"]:checked + .fake-checkbox {
/* style when checked */
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment