Which of the following selectors selects direct descendents?
A
E > F
B
E F
C
E + F
D
E ~ F
Correct Answer: E > F
Example: body > p {background-color: yellow;}/* makes all p tags that have the body tag as their immediate parent have the background color yellow */