Skip to content

Instantly share code, notes, and snippets.

@hachesilva
Created November 15, 2019 03:32
Show Gist options
  • Save hachesilva/e02fd3a73e7f36caa601f6a1f73fd739 to your computer and use it in GitHub Desktop.
Save hachesilva/e02fd3a73e7f36caa601f6a1f73fd739 to your computer and use it in GitHub Desktop.
Sticky footer fexbox
Source: https://philipwalton.github.io/solved-by-flexbox/demos/sticky-footer/
The HTML
<body class="Site">
<header>…</header>
<main class="Site-content">…</main>
<footer>…</footer>
</body>
The CSS
.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