grid

CSS Grid layout for two-dimensional row and column arrangements.

Syntax

css
.container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

Example

css
.page {
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-template-rows: 64px 1fr;
  min-height: 100vh;
}