How can I convert a normal Checkbox to look like an intermediate checkbox using CSS without JavaScript?
For the following DOM elements, what would be the CSS in class intermediate-checkbox to make it look like an intermediate checkbox?
<div class="checkbox">
<label>
<input type="checkbox" class="intermediate-checkbox>
Intermediate Checkbox
</label>
</div>