-
-
Save igorpronin/e3f5e7dc7fc07ac56b21 to your computer and use it in GitHub Desktop.
CSS // Sticky Footer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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