🔒 Your data never leaves your browser

CSS Flexbox Generator

Visually build CSS Flexbox layouts. Adjust properties, see the preview, copy the code.

Container Properties
4
Preview Resize browser to test responsiveness
1
2
3
4

Flexbox Cheat Sheet

Container Properties

display: flex — enables flex context
flex-direction — main axis direction
justify-content — main axis alignment
align-items — cross axis alignment
flex-wrap — single or multi-line
gap — spacing between items

Item Properties

flex-grow — how much item grows
flex-shrink — how much item shrinks
flex-basis — initial main size
align-self — override cross alignment
order — visual ordering
flex: 1 — shorthand for grow:1 shrink:1 basis:0