Skip to main content

Flexbox Playground

v1.0.0

Visually build CSS flexbox layouts and copy the generated CSS.

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