Flexbox Direction
Control the direction of flex items.Flex Direction
.flex-row | Row | flex-direction: row; | Horizontal layout |
.flex-col | Column | flex-direction: column; | Vertical layout |
Flexbox Wrap
Control how flex items wrap.Flex Wrap
.flex-wrap | Wrap | flex-wrap: wrap; | Allow wrapping |
.flex-nowrap | No wrap | flex-wrap: nowrap; | Prevent wrapping |
Justify Content
Control horizontal alignment of flex items.Justify Content
.justify-start | Start | justify-content: start; | Align to start |
.justify-center | Center | justify-content: center; | Center alignment |
.justify-end | End | justify-content: end; | Align to end |
.justify-between | Space between | justify-content: space-between; | Space between items |
Align Items
Control vertical alignment of flex items.Align Items
.items-start | Start | align-items: start; | Align to start |
.items-center | Center | align-items: center; | Center alignment |
.items-end | End | align-items: end; | Align to end |
.items-stretch | Stretch | align-items: stretch; | Stretch to fill |
Align Self
Control individual item alignment.Align Self
.self-center | Center | align-self: center; | Center this item |
.self-start | Start | align-self: start; | Align to start |
.self-end | End | align-self: end; | Align to end |
Gap
Control spacing between flex items.Gap Properties
.gap-1 | 4px | gap: 4px; | Small gap |
.gap-2 | 8px | gap: 8px; | Small gap |
.gap-3 | 12px | gap: 12px; | Medium gap |
.gap-4 | 16px | gap: 16px; | Standard gap |
.gap-6 | 24px | gap: 24px; | Large gap |
.gap-8 | 32px | gap: 32px; | Extra large gap |

