Stage 3: Advanced CSS Design

Flexbox Layouts

Flexbox is the most common way to align items in a row or column.
.container {
  display: flex;
  justify-content: center;
}

Practice Task

Add justify-content: space-between to spread boxes apart.

Next Lesson