Experiment with all flexbox container and item properties. See changes live and copy the CSS.
Presets
Container
.container {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: flex-start;
align-content: flex-start;
gap: 8px;
}Live Preview
3 items.container {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: flex-start;
align-content: flex-start;
gap: 8px;
}
.item-1 {
flex-grow: 0;
flex-shrink: 1;
flex-basis: auto;
}
.item-2 {
flex-grow: 0;
flex-shrink: 1;
flex-basis: auto;
}
.item-3 {
flex-grow: 0;
flex-shrink: 1;
flex-basis: auto;
}Items
Click item in preview to selectQuick Reference