Flexbox Properties
Adjust flexbox properties and see live preview
Live Preview & CSS
See your flexbox layout in action
Live Preview
1
2
3
4
5
Generated CSS
.flex-container {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: stretch;
align-content: stretch;
flex-wrap: nowrap;
gap: 0px;
}Flexbox Tips:
• justify-content controls alignment along the main axis
• align-items controls alignment along the cross axis
• flex-direction determines the main axis direction
• gap adds space between flex items