ToolForge

Flexbox Generator

newCSS

Visual CSS Flexbox playground. Control justify-content, align-items, flex-direction, and gap with a live preview of child elements.

Flex Properties

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

Live Preview

1
2
3
4