Sticky Footer with Flexbox
This method will make sure the footer sticks to the bottom, even when there is not enough content to fill up the full height of the page.
Markup:
<body>
<header>Website</header>
<main>
Page content
</main>
<footer></footer>
</body>
css:
body{
display: flex;
flex-direction: column;
min-height: 100vh;
}
main{
flex: 1;
}