This selector selects all the <h> elements where the parent is a <div> element.
Options:
Explanation:
This is an element>element selector in which operand on the left side of child combinator (>) is the parent and operand on the right side is the child element.
Tags:
CSS
Answer:
This selector selects all the <h> elements where the parent is a <div> element. h > p.