Render Flow - Critical CSS extraction strategies
[Load HTML] -> [Parse HTML structure] -> [Identify above-the-fold content] -> [Extract CSS rules for above-the-fold] -> [Inline critical CSS in <head>] -> [Load remaining CSS asynchronously] -> [Render page with critical styles first]
The browser first loads the HTML, then the critical CSS for visible content is extracted and inlined to render the page quickly. Remaining CSS loads later to avoid blocking rendering.