files/en-us/web/css/reference/values/content-distribution/index.md
The <content-distribution> {{glossary("enumerated")}} value type is used by {{cssxref("justify-content")}} and {{cssxref("align-content")}} properties, and the {{cssxref("place-content")}} shorthand, to distribute a container's extra space among its {{glossary("alignment subject", "alignment subjects")}}.
<content-distribution> = space-between | space-around | space-evenly | stretch
The following keyword values are represented by the <content-distribution> grammar term:
space-between
space-between is safe flex-start for flex layout, and start otherwise. If there is only one item, the item will be flush with the start edge.space-around
space-around is safe center. If the container has only one child, the item will be centered.space-evenly
space-evenly is safe center. If the container has only one child, the item will be centered.stretch
stretch is flex-start in flexbox, and start in other layout modes. If there is only one item, and that item can grow, it will grow to fill the container.{{Specifications}}