flex-item's are positioned horizontally along the flex line.
I want each flex-item to be the same height while positioning their flex-item-three to the bottom - with flex-item-one at the top and flex-item-two directly below it.
<div id="flex-container">
<div class="flex-item">
<div class="flex-item-one"></div>
<div class="flex-item-two"></div>
<div class="flex-item-three"></div>
</div>
<div class="flex-item">
...
</div>
<div class="flex-item">
...
</div>
...
</div>
#flex-container {
display: flex;
}