ToolBoxy
🎨

Css Flexbox Playground

NEW

css Β· flexbox Β· layout

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