CSS Flexbox Generator

Build flexbox layouts visually and copy the generated CSS.

Preview

1
2
3

Click an item to edit its individual flex properties.

Container Properties

Item Properties

Select an item in the preview to edit its properties.

Generated CSS

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