Render Flow - Descendant selector
[Parse CSS] -> [Find selector: div p] -> [Match all <p> inside <div>] -> [Apply styles to matched <p>] -> [Recalculate layout] -> [Paint changes]
The browser reads the CSS, finds the descendant selector 'div p', matches all <p> elements inside any <div>, applies the styles to those <p> elements, then updates the layout and paints the changes.