Make footer stick to the bottom of the page

- Use JavaScript to determine height of `.page_footer` to apply padding to `body` avoiding any content overlap
- Absolute position `.page_footer` to bottom of the page
This commit is contained in:
Michael Rose
2016-07-20 09:10:37 -04:00
parent fc0f8f5b1d
commit 9a9cbc01e3
5 changed files with 37 additions and 6 deletions

View File

@ -2,6 +2,12 @@
BASE ELEMENTS
========================================================================== */
html {
/* sticky footer fix */
position: relative;
min-height: 100%;
}
body {
margin: 0;
padding: 0;