-
Which of the following selects every <p> element that has no children?
-
- :checked
- :disabled
- :empty
- :enabled
- None of these
Correct Option: C
:empty selects every <p> element that has no children including text nodes, :checked selects every checked <input> element, :disabled selects every disabled <input> element, :enabled selects every enabled <input> element.