Skip to content

Instantly share code, notes, and snippets.

@joelbowen
Created March 26, 2013 21:02
Show Gist options
  • Save joelbowen/5249207 to your computer and use it in GitHub Desktop.
Save joelbowen/5249207 to your computer and use it in GitHub Desktop.
Flush Footer, HTML & CSS
<style>
html, body {
height: 100%;
}
#wrap {
min-height: 100%;
}
#main {
overflow:auto;
padding-bottom:150px; /* this needs to be bigger than footer height*/
}
.footer {
position: relative;
margin-top: -150px; /* negative value of footer height */
height: 150px;
clear:both;
padding-top:20px;
}
</style>
<div id="wrap">
<div id="main" class="container clear-top">
<p>Your content here</p>
</div>
</div>
<footer class="footer"></footer>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment