Skip to content

Instantly share code, notes, and snippets.

@igorpronin
Created September 17, 2015 14:38
Show Gist options
  • Save igorpronin/e3f5e7dc7fc07ac56b21 to your computer and use it in GitHub Desktop.
Save igorpronin/e3f5e7dc7fc07ac56b21 to your computer and use it in GitHub Desktop.
CSS // Sticky Footer
html, body {
margin: 0;
padding: 0;
}
html {
min-height: 100%;
position: relative;
}
body {
margin-bottom: 120px;
}
footer {
width: 100%;
background: red;
height: 120px;
position: absolute;
bottom: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment