Created
February 17, 2022 20:16
-
-
Save maxgfr/36fba0f64b78e4e7d6b0b4507fb7c163 to your computer and use it in GitHub Desktop.
Sticky footer using flexbox
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
<body> | |
<div class="content"> | |
content | |
</div> | |
<footer class="footer"></footer> | |
</body> |
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, body { | |
height: 100%; | |
} | |
body { | |
display: flex; | |
flex-direction: column; | |
} | |
.content { | |
flex: 1 0 auto; | |
} | |
.footer { | |
flex-shrink: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment