Checkboxes CSS
by ydelmas
HTML
<input type="checkbox" id="a" />
<label for="a"></label>
CSS
input[type="checkbox"] + label::before { content: 'O'; }
input[type="checkbox"]:checked + label::before { content: 'X'; }
input[type="checkbox"] { display: none;}