Main
Main
Main
Main
Main
I\'m trying to make a simple design with flexbox but I\'m having trouble with IE11. Basically, I want a footer that sticks to the bottom only if the content is not high enou
Since this might be a desired solution: if you don't necessarily want grow the main
tag but still align the footer at the bottom:
html, body {
margin: 0;
display: flex;
}
html {
height: 100%;
}
body {
flex-flow: column nowrap;
flex-grow: 1;
}
footer {
margin-top: auto;
}
Header
Main
Main
Main
Main
Main