CSS Tutorial

CSS Grid

Source: Dave Gray

Grid

Two-dimensional layouts with rows and columns.

CSS
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}