The child elements are evenly distributed among the parent elements.
HTML CODE:
<div class="evenly-distributed-children">
<p>Item1</p>
<p>Item2</p>
<p>Item3</p>
</div>
CSS CODE:
.evenly-distributed-children {
display: flex;
justify-content: space-between;
}
Or, use justify-content: space-around to allocate space to child elements, not between them.