How can I force #footer to the bottom of the page even when there's not enough page content to push it to the bottom?
https://www.bootply.com/qMgTsXOMJd
Please leave an example, Thank you very much in advance
How can I force #footer to the bottom of the page even when there's not enough page content to push it to the bottom?
https://www.bootply.com/qMgTsXOMJd
Please leave an example, Thank you very much in advance
Here's an example of how to do a sticky footer on the bootstrap doc website: http://getbootstrap.com/docs/3.3/examples/sticky-footer-navbar/
In the example the footer is positioned absolute, this sticks it to the bottom of the screen and the body has a bottom margin that matches the height of the footer so content does not overflow the footer.
Add something like this to your css:
body {
margin-bottom: 60px;
}
footer {
height: 60px;
position: absolute;
bottom:0;
}
You have to add a tag: in the navigation and it'll force it to the bottom.