Skip to content

Explain flexbox

You

Can you explain what flexbox is for, in a few sentences?

Assistant

Flexbox lays out items along one axis, a row or a column, and shares out the free space between them. It suits toolbars, navigation bars and card rows, where the items should grow, shrink or wrap depending on the room they have.

You

Show me a minimal example.

Assistant

Here is a row of items that wrap onto a new line when they no longer fit:

ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

Each li keeps its natural width, and gap puts the space between them.