Flexbox Generator

Visually build CSS flexbox layouts and instantly generate the code.

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