Flexbox Playground

Learn and experiment with Flexbox properties

10px
1
2
3
4
5

CSS Code

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