Flexbox Builder
Configure flex container and item properties with live CSS output
Container
flex-direction
row
row-reverse
column
column-reverse
flex-wrap
nowrap
wrap
wrap-reverse
justify-content
flex-start
flex-end
center
space-between
space-around
space-evenly
align-items
stretch
flex-start
flex-end
center
baseline
align-content
normal
flex-start
flex-end
center
space-between
space-around
gap
8px
Item
align-self
auto
flex-start
flex-end
center
baseline
stretch
flex-basis
auto
0
100%
50%
25%
flex-grow
flex-shrink
CSS Output
Copy
.container { display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: flex-start; align-items: stretch; align-content: normal; gap: 8px; } .item { flex-grow: 0; flex-shrink: 1; flex-basis: auto; align-self: auto; }