Skill: Space items out evenly (justify-between & justify-around)

Using `justify-between`

`justify-between`: First item at the start, last item at the end, remaining space distributed evenly between items.

Item 1
Item 2
Item 3

Using `justify-around`

`justify-around`: Equal space on both sides of each item. (Space at ends is half the space between items).

Item A
Item B
Item C

Where to apply:

Commonly used for navigation links, photo galleries, or feature lists where even distribution is desired.