Let's say we have this markup:
<div id="outer">
<div id="middle">
<div id="inner">
</div>
</div>
</div>
and this css:
#outer {
display: flex;
flex-direction: column;
background-color: white;
height: 300px;
}
#middle {
flex-grow: 1;
background-color: beige;
}
#inner {
background-color: black;
height: 100%;
}
I would expect the inner div to span the whole 300 pixel, as it should be as high as the middle flex item which in turn fills its parent.
That's the behavior I see on IE, Edge and Firefox.
On Chrome, the middle div still fills the 300 pixel, but the inner div is as high as it would be without any height attribute.
See this fiddle: https://jsfiddle.net/mhjussna/
That's a bug in Chrome, right?