Flexbox Playground

Visualize and test CSS Flexbox layouts with real-time preview

Container Properties

Item Properties

Preview
1
2
3
.container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  gap: 0px;
}
Copied!