Можно с помощью позиционирования.
body {
width:100%;
height:800px;
}
.box {
width:20%;
height:25%;
background-color:green;
position: relative;
}
.red {
width:100%;
height:50px;
background-color:red;
}
.blue {
width:100%;
height:30px;
background-color:blue;
position: absolute;
bottom: 0;
}
Или флексами.
body {
width:100%;
height:800px;
}
.box {
width:20%;
height:25%;
background-color:green;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.red {
width:100%;
height:50px;
background-color:red;
}
.blue {
width:100%;
height:30px;
background-color:blue;
}