descendant selector: X Y

First p in div

Second p in div

span

p in span

p outside of div

Here are all the p-Elements inside of div (direct or not) selected with the css:

div p {
	background: #e3e3e3;
}