Question:Consider the following problem: When trying to apply a CSS3 style to a label of a checked radio button like this: .... <style> label:checked { font-weight: bold; } </style> .... <input type="radio" id="rad" name="radio"/> <label for="rad">A Label</label> This does not produce the desired effect. Which of the following snippets will correct issue?
A It is not possible to style.
B <input id="rad" type="radio" name="rad"><label "rad">A Label</label>
C input[type="radio"]:checked+label{ font-weight: bold; }
D input[type="radio"]:checked@label{ font-weight: bold; }
+ AnswerC
+ Report