
Sticky Footer
A sticky footer that remains at the bottom using a variable height is best in responsive web design.
CSS
<style>
html, body {
height: 100%;
}
body {
display: flex;
flex-direction: column;
}
.content {
flex: 1 0 auto;
}
.footer {
flex-shrink: 0;
}
</style>
HTML
<html>
<body>
<div class="content">
content
</div>
<footer class="footer"></footer>
</body>
</html>