flex justify-content space-between with "5" elements code example
Example 1: flexbox space between
justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly
Example 2: gap between two flex items
.upper
{
margin:30px;
display:flex;
flex-direction:row;
width:300px;
height:80px;
border:1px red solid;
padding:5px;
}
.upper > div
{
flex:1 1 auto;
border:1px red solid;
text-align:center;
margin:5px;
}
.upper.mc
{flex-direction:column;flex-wrap:wrap;width:200px;height:200px;}