column flexbox code example

Example 1: display flex column

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

Example 2: flex css end

.item {
  align-self:flex-start | flex-end | center | baseline | stretch;
}

Example 3: css flex column

.container {
  flex-direction: row | row-reverse | column | column-reverse;
}

Example 4: flexbox css

.container {
  flex-flow: column wrap;
}

Example 5: flexbox css

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