CSS Grid in 2026 — tricks no one teaches
Grid is 7 years old. Most teams still use 5% of it. The other 95% saves you React components.
CSS Grid lets you do real magazine-style layouts in pure CSS. Most devs use it for "12-column responsive grid" and stop.
Underused features:
- subgrid — child grids inherit the parent's tracks. Finally lets you align nested cards perfectly.
- grid-template-areas — name your regions, place children with one line. No more nth-child chaos.
- auto-fit + minmax — grids that change column count without media queries.
- span keyword — let an item cross multiple cells. Build asymmetric layouts in one declaration.
The "use case" you keep missing: cards of different sizes that still align bottom edges. Subgrid solves it in 3 lines instead of a JS layout library.