Hey guys. This is my first post, but anyways, here's a fun little code snippet I made today bored that demos the CSS Checkbox "Hack".<p>The Checkbox Hack basically allows you to create simple click events in your HTML document without the use of JavaScript. It's done, like this:<p><pre><code> input[type=checkbox]:checked ~ div {}
</code></pre>
Pretty interesting, but not really practical for cross-browser support (IE9 and below).