bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/CSS/Modern Layout
CSS•Modern Layout

CSS Grid Gap

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind CSS Grid Gap?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

.___ {
3Order

Put the learning moves in the order that makes the concept easiest to apply.

The CSS gap Property
The CSS row-gap Property
The CSS column-gap Property

CSS Grid Gaps

The space between the rows and columns in a grid container are called gaps (or gutters ).

The gaps are created between the grid rows and columns, not on the outer edges of the grid container.

The default size of the gap is 0, which means that there are no spacing between grid items.

The size of the gap can be adjusted with the following properties:

  • column-gap - Specifies the gap between grid columns
  • row-gap - Specifies the gap between grid rows
  • gap - Shorthand property for row-gap and column-gap

The CSS column-gap Property

The column-gap property specifies the gap between the columns in a grid.

Example

Formatted code
.container {
  display: grid;
  column-gap: 50px;
}

Live preview

Expected output

1 2 3 4 5

The CSS row-gap Property

The row-gap property specifies the gap between the rows in a grid.

Example

Formatted code
.container {
  display: grid;
  row-gap: 50px;
}

Live preview

Expected output

1 2 3 4 5

The CSS gap Property

The gap property is a shorthand property for row-gap and column-gap .

If a single value is provided, it applies the same gap to both rows and columns.

If two values are provided, the first value sets the row-gap , and the second value sets the column-gap .

Example

Formatted code
.container {
  display: grid;
  gap: 50px;
}

Live preview

Expected output

1 2 3 4 5

Example

Formatted code
.container {
  display: grid;
  gap: 30px 100px;
}

Live preview

Expected output

1 2 3 4 5

CSS Grid Gap Properties

PropertyDescription
column-gapSpecifies the gap between the grid columns
gapA shorthand property for row-gap and column-gap
row-gapSpecifies the gap between the grid rows

Previous

CSS Flexbox Align

Next

Responsive Web Design - Media Queries