Render Flow - Defining grid rows
Read HTML container element
Apply Tailwind class: grid
Create grid container
Apply Tailwind class: grid-rows-{n}
Define number of rows in grid
Place grid items into rows
Calculate row heights
Paint grid and items
Composite final layout
The browser reads the HTML container, applies Tailwind's grid display, then sets the number of rows using the grid-rows-{n} class. It calculates row sizes and places items accordingly before painting the final layout.