Place div at bottom flex
by greatCar
HTML
<div class="container">
<div class="main">my main div</div>
<div class="bottom">my bottom div</div>
</div>
CSS
.container {
height: 250px;
width: 100%;
display: flex;
flex-direction: column;
}
.main {
flex-grow: 1;
background: orange;
}
.bottom {
background: purple;
}