Last active
September 30, 2019 03:01
-
-
Save NatalieMac/b6ed8c14f0a616cacfae to your computer and use it in GitHub Desktop.
Sticky footer w/ Underscores markup
This file contains hidden or 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 { | |
height: 100%; | |
overflow: hidden; | |
} | |
body { | |
height: 100%; | |
overflow: scroll; | |
} | |
.site { | |
display: table; | |
height: 100%; | |
width: 100%; | |
} | |
.site-footer { | |
display: table-row; | |
height: 1px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks! Made my day easier.