Now in a flexbox
row I can write
<div layout="row">
<div>some content</div>
<div flex></div> <!-- fills/grows available space -->
<div>another content</div>
</div>
I would like to achieve the same but vertically, like on this picture
Currently the problem is that the div which would need to grow doesn't have any height so the two contents are below each other. I want my second content to be at the bottom of the parent container which has a fixed height!
I know I could solve this by positioning the second content absolute and bottom: 0;
but can I achieve this with flexbox
?