CSS FLEX — Manage free space left after wrap
I have a flex defined like seen here: https://codepen.io/Jazzigula/pen/jOdYyYp
At the moment the flex wraps its width doesn't automatically shrink further to the intrinsic size based on the flex items now stacked one on top of the other, but the flex container rather keeps that breakpoint width leaving the empty space on the side.
Is there a way to eliminate that free space but to keep items flush left?
The only way I know to manage the spacing between the items on the main flex axis is through justify-content and margins. But can't find a way to achieve this
Thanks
At the moment the flex wraps its width doesn't automatically shrink further to the intrinsic size based on the flex items now stacked one on top of the other, but the flex container rather keeps that breakpoint width leaving the empty space on the side.
Is there a way to eliminate that free space but to keep items flush left?
The only way I know to manage the spacing between the items on the main flex axis is through justify-content and margins. But can't find a way to achieve this
