CSS Layout Generator

Generate Flexbox or CSS Grid layouts visually.

Properties

Preview

1
2
3
4
5
6

Generated CSS

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