<!DOCTYPE html>
<style>
.container {
position: absolute;
width: 100px;
height: 100px;
background: red;
display: flex;
align-items: end;
}
.bottom-left {
position: absolute;
width: 50px;
height: 50px;
margin-top: 500px;
background: green;
border: 5px solid black;
padding: 5px;
}
</style>
<div class="container">
<div class="bottom-left"></div>
</div>