Visual builder + live preview. Adjust controls — see the layout + copy the CSS.
| Property | Effect |
|---|---|
flex-direction | Main axis: row (horizontal) or column (vertical) |
justify-content | Distribution along the main axis |
align-items | Distribution along the cross axis |
flex-wrap | Wrap items onto multiple lines if needed |
gap | Spacing between items (replaces margin tricks) |
justify-content: center; align-items: center;justify-content: space-between;flex-wrap: wrap; gap: 16px;