Skip to content

Instantly share code, notes, and snippets.

@AlexKardone
Last active May 9, 2017 13:24
Show Gist options
  • Save AlexKardone/3c1bb35c877c9bc060d608c3ec019d8e to your computer and use it in GitHub Desktop.
Save AlexKardone/3c1bb35c877c9bc060d608c3ec019d8e to your computer and use it in GitHub Desktop.
Sticky footer
html,
body {
height: 100%;
}
.wrapper {
display: table;
width: 100%;
height: 100%;
background: rgb(240, 240, 150);
}
.content {
display: table-row;
height: 100%;
background: rgb(130, 20, 120);
}
.footer {
width: 100%;
height: 80px;
background: rgb(100, 1, 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment