when there is flexbox with direction column, and it has item inside, which has grow set to 1 and there is another div inside with height set to 100%, then div does not grow to size of flexbox item when it has basis set to auto. This happens only in Chrome. When basis is 0 then everything works. Why is this happening?
.body {
width: 400px;
height: 400px;
display: flex;
flex-direction: column;
}
.outer {
flex: 1 0 auto;
}
.inner {
height: 100%;
background-color: RED;
}
<div class="body">
<div class="outer">
<div class="inner"></div>
</div>
</div>