HomeToolsFlexbox

Flexbox Playground

Flex Direction
Flex Wrap
Justify Content
Align Items
Gap16px
Flex Grow0
Flex Shrink1
Order0
Align Self
PREVIEW
1
2
3
CONTAINER CSS
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: stretch;
align-content: stretch;
gap: 16px;
ITEM CSS
.flex-item-1 {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  order: 0;
  align-self: auto;
}