UT

Flexbox Playground

Interactive flexbox property explorer with live preview.

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