Flexbox Playground

Interactive flexbox layout builder

Flex Direction

Justify Content

Align Items

Flex Wrap

Gap

8px

Items

Item Count

Live Preview

1
2
3

Generated CSS

.container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 8px;
}

.item {
  min-width: 60px;
  min-height: 60px;
}