Flexbox Generator
Visually configure CSS Flexbox. Set direction, wrap, justify, align and per-item properties. Copy generated CSS instantly.
Container
Items (3)
Generated CSS
.container {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: stretch;
gap: 8px 8px;
height: 200px; /* optional */
}