Современный способ на флексбоксе:
body {
min-height: 100vh;
display: flex;
flex-direction: column;
}
main {
/* This will make the main element take the remaining space dynamically */
flex-grow: 1;
}
Современный способ на флексбоксе:
body {
min-height: 100vh;
display: flex;
flex-direction: column;
}
main {
/* This will make the main element take the remaining space dynamically */
flex-grow: 1;
}