Last active
March 1, 2019 11:18
-
-
Save kisildev/dca46e374d6255ce95daa129edd0162d to your computer and use it in GitHub Desktop.
Pressing Footer (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
html, | |
body { | |
height: 100%; | |
} | |
.wrapper { | |
display: flex; | |
flex-direction: column; | |
height: 100%; | |
} | |
.content { | |
flex: 1 0 auto; | |
} | |
.footer { | |
flex: 0 0 auto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment