Flexbox
Format: [flex]
Values:
box
justify-center
justify-start
justify-end
justify-between
justify-around
justify-evenly
content-center
content-start
content-end
content-between
content-around
content-evenly
items-stretch
items-center
items-start
items-end
row
column
reversed
wrap
nowrap
Example
<nav flex="justify-between items-center row nowrap">
<a href="#">Link</a>
<a href="#">Link</a>
<a href="#">Link</a>
<a href="#">Link</a>
</nav>