DevTools.run

Flexbox Generator

Visual CSS Flexbox playground. Adjust properties with live preview and copy the generated CSS.

Properties

Preview

1
2
3
4
5
.flex-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 16px;
}