Last active
June 6, 2016 04:59
-
-
Save Scretch-1/1e32c9d5b531d360ae7b to your computer and use it in GitHub Desktop.
SCSS Прижатый к низу футер
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
// Прижатый к низу футер | |
// После подключения нужно добавить id="footer" контейнеру footer | |
html { | |
position: relative; | |
min-height: 100%; | |
} | |
body { | |
margin-bottom: 70px; | |
} | |
#footer { | |
position: absolute; | |
bottom: 0; | |
width: 100%; | |
height: 70px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment