Understanding CSS Alignment Properties Justify and Align

After defining the layout, the next step is to deal with the alignment of items. There are nine different alignment properties, as shown in the list below:

  • align-content
  • align-items
  • align-self
  • justify-content
  • justify-items
  • justify-self
  • place-content
  • place-items
  • place-self

This is one of the most complex topics in HTML and CSS, as they do different things for different layout systems.

We'll start by discussing how they work inside a grid layout.

Grid layout

When it comes to aligning items in a grid, we have to talk about both row and column alignments. As an example, this is a grid with six items, and the grid container is 300px high:

<div class="container">
  <div class="item">1</div>
  <div class="item">2</div>
  <div class="item">3</div>
  <div class="item">4</div>
  <div class="item">5</div>
  <div class="item">6</div>
</div>
.container {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  height: 300px;
}

Row alignment

The align-content property is used to specify how the rows are positioned in a multi-row grid or flex container. For a grid layout, the common values include:

  • start
.container {
  align-content: start;
}

align content start

  • end
.container {
  align-content: end;
}

align content end

  • center
.container {
  align-content: center;
}

align content center

  • space-between
.container {
  align-content: space-between;
}

align content space between

  • space-around
.container {
  align-content: space-around;
}

align content space around

  • space-evenly
.container {
  align-content: space-evenly;
}

align content space evenly

  • stretch
.container {
  align-content: stretch;
}

align content stretch

align-items, on the other hand, is used to define how the items are positioned within their respective grid cell. Common values include:

  • start
.container {
  align-items: start;
}

align items start

  • end
.container {
  align-items: end;
}

align items end

  • center
.container {
  align-items: center;
}

align items center

  • stretch
.container {
  align-items: stretch;
}

align items stretch

  • baseline
.container {
  align-items: baseline;
}

align items baseline

Lastly, the align-self property works just like align-items, except it is used on individual grid cells. If the container has the align-items set, it will be overwritten by align-items.

.container {
  align-items: start;
}

#Item {
  align-self: end;
}

align self

Column alignment

The column alignment, controlled by the justify properties, works in a similar way. First, the justify-content property defines how grid items are distributed horizontally along the main axis. Some common values are:

  • start
.container {
  justify-content: start;
}

justify content start

  • end
.container {
  justify-content: end;
}

justify content end

  • center
.container {
  justify-content: center;
}

justify content center

  • space-between
.container {
  justify-content: space-between;
}

justify content between

  • space-around
.container {
  justify-content: space-around;
}

justify content around

  • space-evenly
.container {
  justify-content: space-evenly;
}

justify content evenly

The justify-items controls how grid items are aligned horizontally within their cells. Some common values are:

  • start
.container {
  justify-items: start;
}

justify items start

  • end
.container {
  justify-items: end;
}

justify items end

  • center
.container {
  justify-items: center;
}

justify items center

  • stretch
.container {
  justify-items: stretch;
}

justify items stretch

Similarly, the justify-self property is used on individual grid items to overwrite the default alignment rule set by justify-items.

.container {
  justify-items: start;
}

.item-sm {
  justify-self: end;
}

justify self

Alignment in both directions

The place properties are a set of shorthand properties that control how the items are justified and aligned simultaneously. For example,

.container {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  height: 300px;

  place-content: center;
}

This is the same as:

.container {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  height: 300px;

  align-content: center;
  justify-content: center;
}

place-content

place-items

place-self

Flex layout

The exact same alignment properties can be used for flexbox layouts. However, instead of row and column alignments, the justify properties deal with the alignment in the flexbox's main axis, which depends on the flex-direction property.

If flex-direction is set to row, the main axis is horizontal:

main axis row

When you change the flex-direction property, the main axis also changes.

main axis column

Parallel to the main axis

The justify properties deal with alignments in the direction parallel to the flex main axis. For example, when the flex-direction is set to row:

.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

  height: 400px;

  /* align-content: center; */
  justify-content: center;
}

flex justify center row

And when the flex-direction is set to column:

.container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;

  height: 400px;

  /* align-content: center; */
  justify-content: center;
}

flex justify center column

Note that the justify-items and justify-self properties are ignored in a flex layout.

Also, instead of start and end, there are flex-start and flex-end, designed specifically for a flex layout. In most cases, the keywords start and end would also work for a flex layout, but you might need to use the flex-* keywords for the best browser compatibility.

Perpendicular to the main axis

On the other hand, the align properties deal with the alignment in the direction perpendicular to the main axis. When the flex-direction is set to row:

.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

  height: 400px;

  align-content: center;
}

flex align center row

And when the flex-direction is set to column:

.container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;

  height: 400px;

  align-content: center;
}

flex align center column

Unlike the justify properties, the align-items and align-self properties work in a flex layout.

Similarly, the place properties are a set of shorthand properties that allow you to define justification and alignment at the same time.

You may experiment with the above CodePen demo.