/* Child Selector (using > ) */ div>p { background-color: green; } /* Descendant Selector */ .div p { background-color: maroon; }