Flexbox Playground

Interactively explore all CSS flexbox properties with live output

cssflexboxflexlayoutplayground

Container Properties

Items (3)

Up to 8 items supported.

Live Preview

1
2
3

Generated CSS

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