CSS Flexbox Generator
Interactive CSS Flexbox playground with live preview. Adjust flex container and item properties visually and copy the generated CSS code.
Presets
Container Properties
Preview
1
2
3
Flex Items (3)
Item 1
Item 2
Item 3
Generated CSS
.container {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: stretch;
flex-wrap: nowrap;
gap: 16px;
}