Flexbox & Grid Playground
Visual CSS layout lab
Tweak Flexbox or Grid properties and copy the CSS for your project.
flex-direction
justify-content
align-items
flex-wrap
gap (px)
1
2
3
4
5
6
.container {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
flex-wrap: nowrap;
gap: 12px;
min-height: 200px;
min-width: 320px;
width: 100%;
padding: 16px;
}