Experiment with flex container properties and watch the layout update live — copy the container CSS when it looks right
flex-direction
justify-content
align-items
flex-wrap
Settings
Live preview
Generated CSS
.container {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: stretch;
flex-wrap: wrap;
gap: 12px;
}