Published
- 1 min read
css selector not checked input label
The solution for this is noted below
css selector not checked input label
Solution
/* For a checked radio or checkbox */
input[type="radio"]:checked + label
input[type="checkbox"]:checked + label
/* For an unchecked radio or checkbox */
input[type="radio"]:not(:checked) + label
input[type="checkbox"]:not(:checked) + label
Try other methods by searching on the site. That is if this doesn’t work