CSS Layout Generator

Interactive builder for Flexbox and Grid layouts.

flex Settings

16px

CSS Code

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