Descendent Selectors

Descendent selectors specify that styles should only be applied when the element in question is a descendent (for example, a child, or a grandchild) of another element. So this...

h3 em { color: white; background-color: black; }

Plus this HTML:

<h3>This is <em>emphasized</em></h3>

Would yield

This is emphsized