CSS flexbox offers powerful alignment options for users. A flex container groups multiple flex items together in order to control their representation.
Among the many properties offered by the flex container, one of the most widely used properties is justify-content
.
space-evenly
is a value that can be assigned to the justify-content
property to distribute flex items in such a way that the items have equal space around them. See the example below:
Free Resources