Exploring the realm of flexbox has brought me to a bit of a roadblock with a layout like this one: https://jsfiddle.net/5b0pLgkj/
Everything seems to be running smoothly in Chrome and Safari, where children elements can be resized and fill up the available space within the container. However, Firefox presents a challenge - the flex:1
property doesn't seem to have any effect and resizing children becomes impossible (even though the DOM reflects changes in height).
I've tried using flex:auto
, which seems to improve things but at the cost of children not fully utilizing the empty space. Any suggestions or insights on this matter would be greatly appreciated!
Thanks in advance!