i have a flex-box container (row), that contains an vertical list that is set to overflow: scroll, and another div that has flexible height, how to i set the height of the list to be equal to the height of the div, so that i can scroll, right now the list is just way bigger than the div
also i need do that with pure css
<div #id="container">
<div id="list">
<div></div>
<div></div>
</div>
<div id="other-div">
</div>