Suppose there is a code:
HTML:
<label><input type = "radio"></label> CSS:
input[type="radio"] { visibility: hidden; } input[type="radio"]:checked{ } Now the question is:
How do I write styles for the label tag in input[type="radio"]:checked{} ? That is, I want to assign certain styles to the parent label tag when I click on <input type = "radio"> .