I have an outer div-element which contains many inner div-elements. I would like to achieve that the inner-divs have the same height on every window-size.
If i use display: flex;
on the outer-div, the problem is that all inner-divs come on one line. There should be five divs in a row and when the window is getting smaller, they should flow down.
Here is a JSFiddle: https://jsfiddle.net/k7oLbqj1/5/
I can solve this issue with only CSS. I hope somebody can help me.
Thanks in advance!