CSS Studio

Flexbox Playground

Meistern Sie Flexbox mit interaktiven visuellen Kontrollen

Container-Eigenschaften

px
px
px
%
px
px

Presets

Elemente

Vorschau

Item 1
Item 2
Item 3

Hauptachse

Horizontal

Querachse

Vertikal

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