--- extends: _layouts.markdown title: "Justify Content - Flexbox" category: "Flexbox" --- # Justify Content
| Class | Properties | Description |
|---|---|---|
| .justify-start | justify-content: flex-start; | Justify items against the start of the container. |
| .justify-center | justify-content: center; | Justify items in the center of the container. |
| .justify-end | justify-content: flex-end; | Justify items against the end of the container. |
| .justify-between | justify-content: space-between; | Justify items by adding an equal amount of space between each one. |
| .justify-around | justify-content: space-around; | Justify items by adding an equal amount of space around each one. |