---
layout: single
property_name: align-content
---
Defines how each line is aligned within a flexbox container. It only applies if
Each line will stretch to fill the remaining space. In this case, the container is This remaining space is distributed equally amongst the two lines:
Each line will only fill the space it needs. They will all move towards the start of the flexbox container's cross axis.
Each line will only fill the space it needs. They will all move towards the end of the flexbox container's cross axis.
Each line will only fill the space it needs. They will all move towards the center of the flexbox container's cross axis.
Each line will only fill the space it needs. The remaining space will appear between the lines.
Each line will only fill the space it needs. The remaining space will be distributed equally around the lines: before the first line, between the two, and after the last one.
#align-content
flex-wrap: wrap is present, and if there are multiple lines of flexbox items.default
align-content: stretch;
300px high. All boxes are 50px high, apart from the second one who is 100px high.
align-content: flex-start;
align-content: flex-end;
align-content: center;
align-content: space-between;
align-content: space-around;