css flex space between items vertical code example
Example 1: add space between flex items
.flex-gap {
display: inline-flex;
flex-wrap: wrap;
}
.flex-gap > div {
margin: 6px; /* HERE WE ADD THE SPACE */
}
Example 2: flexbox space between
justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly
Example 3: css flex
/* Flex */
.anyclass {
display:flex;
}
/* row is the Default, if you want to change choose */
.anyclass {
display:flex;
flex-direction: row | row-reverse | column | column-reverse;
}
.anyclass {
/* Alignment along the main axis */
justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly | start | end | left | right ... + safe | unsafe;
}
Example 4: css all flex properties
.container {
flex-direction: row | row-reverse | column | column-reverse;
}