Flexbox Generator

Create CSS Flexbox layouts with a visual editor. Customize direction, wrapping, alignment, and spacing.

Flexbox Settings

Common Layouts

Preview

1
2
3
4
5

CSS Code

display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: stretch;
align-content: stretch;
gap: 16px;

Tailwind Classes

flex justify-start items-stretch gap-4