Modern way via flexbox:
body {
min-height: 100vh;
display: flex;
flex-direction: column;
}
main {
/* This will make the main element take the remaining space dynamically */
flex-grow: 1;
}
Modern way via flexbox:
body {
min-height: 100vh;
display: flex;
flex-direction: column;
}
main {
/* This will make the main element take the remaining space dynamically */
flex-grow: 1;
}