Utilities for controlling how rows are positioned in multi-row flex and grid containers.
<div class="h-48 flex content-start ...">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
</div>
<div class="h-48 flex content-center ...">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
</div>
<div class="h-48 flex content-end ...">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
</div>
Use content-between
to distribute rows in a container such that there is an equal amount of space between each line:
<div class="h-48 flex content-between ...">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
</div>
Use content-around
to distribute rows in a container such that there is an equal amount of space around each line:
<div class="h-48 flex content-around ...">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
</div>
To control the alignment of flex content at a specific breakpoint, add a {screen}:
prefix to any existing utility class. For example, use md:content-around
to apply the content-around
utility at only medium screen sizes and above.
<div class="content-start md:content-around ...">
<!-- ... -->
</div>
For more information about Tailwind's responsive design features, check out the Responsive Design documentation.
By default, only responsive variants are generated for align-content utilities.
You can control which variants are generated for the align-content utilities by modifying the alignContent
property in the variants
section of your tailwind.config.js
file.
For example, this config will also generate hover and focus variants:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
+ alignContent: ['hover', 'focus'],
}
}
}
If you don't plan to use the align-content utilities in your project, you can disable them entirely by setting the alignContent
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ alignContent: false,
}
}