Utilizor
Contact Us

Flex Container

The flex container properties are: flex-direction, flex-wrap, flex-flow, justify-content, align-items, align-content.

CSS Flex Container

The flex container properties are: flex-direction, flex-wrap, flex-flow, justify-content, align-items, align-content.

flex-direction

The flex-direction property defines in which direction the container wants to stack the flex items.

1
2
3

justify-content

The justify-content property is used to align the flex items.

1
2
3

Example

.flex-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}