Q. Which of the following selectors selects the checkboxes that is checked or enabled?
β
Correct Answer: (C)
:checked
Explanation: Example : Set the “height” and “width” properties for all checked <input> elements:
<input type="checkbox"> Lorem Ipsum<br>
<input type="checkbox"> Lorem Ipsum<br>
<input type="checkbox" checked="checked"> Lorem Ipsum<br>
<input type="checkbox"> Lorem Ipsum
input:checked {
height: 50px;
width: 50px;
}
<input type="checkbox"> Lorem Ipsum<br>
<input type="checkbox"> Lorem Ipsum<br>
<input type="checkbox" checked="checked"> Lorem Ipsum<br>
<input type="checkbox"> Lorem Ipsum
input:checked {
height: 50px;
width: 50px;
}