Flex Playground

Visually craft and generate CSS for modern layouts.

Live Preview

1

Code

Copy the generated snippet for your project.

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

.item-1 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  order: 0;
  align-self: auto;
}