I am having the classic problem for the positioning of a Footer on the bottom of the browser. I\'ve tried methods including http://ryanfait.com/resources/footer-stick-to-bot
Assuming you know the size of your footer, you can do this:
footer { position: sticky; height: 100px; top: calc( 100vh - 100px ); }