Do you have a set of inline div containers with hardcoded widths but varying content heights?
Is there a way to ensure that all divs maintain the same height without risking content overflowing from its parent container?
I've experimented with inheriting min-height, but it doesn't seem to be dynamic. If the parent container has a min-height of 320px and sibling divs inherit this value, any sibling that exceeds 320px due to content will cause both itself and the parent container to resize, while the other siblings stay at 320px.
Is there a solution to this issue using only CSS?