Selects an element that is the child of another element.
Testsheet:
body > p {color: red;}
The > selector means "child of", so that this style sheet should make the text in
all P's that are direct children of BODY red.
It should not make this paragraph red, though. It’s in a div, and therefore not a direct child of the body.