Skip to content

Instantly share code, notes, and snippets.

@abe-source
Created August 1, 2017 20:33
Show Gist options
  • Save abe-source/02ff4141c0449b77ffcf4ca4f3918c17 to your computer and use it in GitHub Desktop.
Save abe-source/02ff4141c0449b77ffcf4ca4f3918c17 to your computer and use it in GitHub Desktop.
Sticky Footer (Flex)
<body class="Site">
<header>…</header>
<main class="Site-content">…</main>
<footer>…</footer>
</body>
.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