using display flex code example

Example 1: display flex column

.container {
	display: flex;
	flex-direction: column;
}

Example 2: flexbox css

.container {
  flex-flow: column wrap;
}

Example 3: flexbox css

.container {
  justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly | start | end | left | right ... + safe | unsafe;
}

Example 4: css flex

.item {
  flex-basis:  | auto; /* default auto */
}

Example 5: css flex

.item {
  flex: none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]
}

Tags: