If I'm correct, you want your footer at the bottom of the whole page, or want it like a "sticky" footer (you always wanna see the footer if you are at the middle of the page).
The first solution (Footer at the bottom)
index.html
<div class="content-wrapper">
<div class="some-content"></div>
<footer></footer>
</div>
style.css
.content-wrapper{
position:relative;
padding-bottom:100px;
}
footer{
position:absolute;
bottom:0;
left:0;
/*your style after that*/
width:100vw;
height:100px;
}
The second solution (For sticky footer)
style.css
.content-wrapper{
padding-bottom:100px;
}
footer{
position:fixed;
bottom:0;
left:0;
/*your style after that*/
width:100vw;
height:100px;
}
Hope it helps!