Flexbox Playground
Learn CSS flexbox visually. Adjust properties and see changes in real-time.
Container Properties
Preview
1
2
3
4
5
CSS Code
.container {
display: flex;
justify-content: flex-start;
align-items: stretch;
flex-direction: row;
flex-wrap: nowrap;
gap: 8px;
}