Q. Which of the following selectors selects the checkboxes that is checked or enabled?

  • (A) E ~ F
  • (B) ::after
  • (C) :checked
  • (D) None of the above
πŸ’¬ Discuss
βœ… 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;
}
Explanation by: Tina Singh
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;
}

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
225
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Tina Singh
Publisher
πŸ“ˆ
80%
Success Rate