Skip to content

Flexbox & Grid

Align Content

Utilities for controlling how rows are positioned in multi-row flex and grid containers.

Quick reference

ClassDescription
content-startalign-content: flex-start
content-centeralign-content: center
content-endalign-content: flex-end
content-betweenalign-content: space-between
content-aroundalign-content: space-around
content-evenlyalign-content: space-evenly

Basic usage

Start

Use content-start to pack rows in a container against the start of the cross axis.

01
02
03
04
05
html
<div class="grid grid-cols-3 gap-24 content-start ...">
  <!-- ... -->
</div>

Center

Use content-center to pack rows in a container in the center of the cross axis.

01
02
03
04
05
html
<div class="grid grid-cols-3 gap-24 content-center ...">
  <!-- ... -->
</div>

End

Use content-end to pack rows in a container against the end of the cross axis.

01
02
03
04
05
html
<div class="grid grid-cols-3 gap-16 content-end ...">
  <!-- ... -->
</div>

Space between

Use content-between to distribute rows in a container such that there is an equal amount of space between each line:

01
02
03
04
05
html
<div class="grid grid-cols-3 gap-24 content-between ...">
  <!-- ... -->
</div>

Space around

Use content-around to distribute rows in a container such that there is an equal amount of space around each line:

01
02
03
04
05
html
<div class="grid grid-cols-3 gap-x-16 content-around ...">
  <!-- ... -->
</div>

Space evenly

Use content-evenly to distribute rows in a container such that there is an equal amount of space around each item, but also accounting for the doubling of space you would normally see between each item when using content-around.

01
02
03
04
05
html
<div class="grid grid-cols-3 gap-x-16 content-evenly ...">
  <!-- ... -->
</div>

Applying conditionally

Breakpoints and media queries

You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:content-around to apply the content-around utility at only medium screen sizes and above.

html
<div class="grid content-start md:content-around">
  <!-- ... -->
</div>

Released under the Apache 2.0 License.