Quick CSS Tips - part 1
· One min read
Changing the color of checkbox if checked
- HTML
- CSS 1
- CSS 2
<label for="checkbox1" class="checkbox">
<input id="checkbox1" type="checkbox" role="checkbox" />
<span class="custom"> Checkbox </span>
</label>
