CSS: gap

The gap property adds consistent space between Grid or Flexbox tracks without adding margins to each child.

What you will learn

Minimal example

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

The first value controls row spacing and the second controls column spacing. A single value applies the same gap in both directions.

Common mistakes