CSS Flexbox Generator
Configure Flexbox properties visually and copy the ready-to-use CSS.
Live Preview
.container {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: stretch;
flex-wrap: nowrap;
gap: 8px;
}
.item {
padding: 1rem;
min-width: 60px;
min-height: 60px;
}