Make footer stay at the bottom of the page layout in css
One of the simple way to make the footer of the page stick to bottom is using flexbox.
Html
<body>
<header>Header</header>
<section>Content</section>
<footer>Footer</footer>
</body>
Css
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
footer {
margin-top: auto;
}
Output: With less content
Output: With Scrollable content

