Skip to content

Instantly share code, notes, and snippets.

@OneWeb
Last active August 8, 2018 13:08
Show Gist options
  • Save OneWeb/ab92df9f1a4ff7965ae3201eea8a0abd to your computer and use it in GitHub Desktop.
Save OneWeb/ab92df9f1a4ff7965ae3201eea8a0abd to your computer and use it in GitHub Desktop.
Footer Always At Bottom CSS trick
<div class="wrapper">
<!-- Put your main page content here -->
</div>
<footer>
<!-- Put your footer content here -->
</footer>
html, body {
height: 100%;
}
body {
display: flex;
flex-direction: column;
}
.wrapper {
flex: 1 0 auto;
padding: 0;
}
footer {
z-index: 1;
flex-shrink: 0;
width: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment