I'm currently struggling with the placement of my sidebar on top of my footer, which is not where it belongs. I would like to move it to the bottom. Take a look at this image for a visual representation of what I'm aiming for.
footer {
padding: 20px;
margin: 20px;
text-align: center;
}
#side {
width: 19%;
height: 100%;
position: absolute;
margin: 20px;
right: 0;
}
<main>
<div id="side">
hello
</div>
</main>
<footer>
<a href="#">About us</a>
<a href="#">Contact us</a>
</footer>