- Does it cover named grid areas?
- Yes — grid-template-areas is a major section, including the 'holy grail' layout classic.
- What about subgrid?
- Subgrid is covered — supported in modern browsers since 2023. Essential for matching inner-child alignment across siblings.
- Does it include minmax() and auto-fit?
- Both, with the common responsive card-grid pattern as a reference.
- Should I use Grid or Flexbox?
- Grid for 2D layouts (page skeletons, card grids with multiple rows and columns). Flexbox for 1D content (navbars, button rows).