Can you create a checkbox with a minus "-" symbol inside using just html
and css
?
I attempted to achieve this with JavaScript by using:
document.getElementsByTagName("input")[0].indeterminate = true;
However, the requirement is to accomplish this using only html
and css
.