CSS Flexbox Playground
Experiment with CSS Flexbox properties using an interactive live preview. Copy-ready code for any layout. Free online, no signup.
Preparing private browser tool…
Frequently asked questions
- justify-content vs align-items?
- justify-content aligns on the main axis, align-items aligns on the cross axis. Switching flex-direction swaps which is which.
- flex-grow vs flex-basis?
- flex-basis sets initial size before free space distribution. flex-grow controls how much extra space the item absorbs.
- How to wrap items?
- Set flex-wrap: wrap on the container. Use gap for consistent spacing.