I want to push footer to the bottom of the page with little content.
It tried the code below and the footer is pushed to the bottom, but I can't scroll pages with lots of content.
#Wrapper, body {
height:100%;
background: white;
}
#Wrapper {
display: flex;
flex-direction: column;
}
#Header_wrapper, #Content {
flex: 1 0 auto;
}
#Footer {
flex-shrink: 0;
margin-top:auto
}
<body>
<div id="Wrapper">
<div id="Header_wrapper"></div>
<div id="Content"></div>
<footer id="Footer"></footer>
</div>
</body>