Created
August 1, 2017 20:33
-
-
Save abe-source/02ff4141c0449b77ffcf4ca4f3918c17 to your computer and use it in GitHub Desktop.
Sticky Footer (Flex)
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
<body class="Site"> | |
<header>…</header> | |
<main class="Site-content">…</main> | |
<footer>…</footer> | |
</body> |
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
.Site { | |
display: flex; | |
min-height: 100vh; | |
flex-direction: column; | |
} | |
.Site-content { | |
flex: 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment