Skip to content

Instantly share code, notes, and snippets.

@Quinten
Created January 28, 2016 09:29
Show Gist options
  • Save Quinten/77c10325dad19d1a6d50 to your computer and use it in GitHub Desktop.
Save Quinten/77c10325dad19d1a6d50 to your computer and use it in GitHub Desktop.
Sticky footer with flexbox
html, body {
margin: 0;
padding: 0;
height: 100%;
}
.wrapper {
display: flex;
flex-direction: column;
min-height: 100%;
}
.wrapper main {
flex-grow: 1;
flex-shrink: 0;
flex-basis: auto;
}
<body>
<div class="wrapper">
<header></header>
<main></main>
<footer></footer>
</div>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment