Learn CSS Flexbox with an interactive playground. Adjust properties visually, see instant results, and copy the generated CSS code. Free online tool for developers.
.container {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: stretch;
align-content: stretch;
gap: 16px;
}