1The ‘>’ symbol is called the child selector. CSS rules will be applied to
2elements which are direct children of the particular element.
3
4Example
5The following code will target all the <p> tags which are immediate children of container
6<div>.
7
8div.container > p {
9 border-bottom: 1px dashed black;
10}