Flexbox Playground

Generate CSS flexbox layouts from property combinations

1 credit
Preview
1
2
3
4
CSS
.container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 8px;
}

flex-direction

justify-content

align-items

flex-wrap

gap

Items (4)

4