Stop using min height/width for flex items: Understand flexbox
Introduction
Instead of using tricks when working with flexbox, why not take the time to learn it?
By tricks, I mean things like applying min-height to flex items because height doesn't work.
That's what we'll do in this post. If you've used flexbox ...
tigerabrodi.blog6 min read
Mohtasim Howlader
what if you want a flex item that doesn't grow past the fixed size of the parent but the item should overflow. min-height:0 gets the job done, flex-basis: 0 doesn't accomplish that.