Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abhishekdagarit/05fb08fd2e00c4816575f68c3fd2bb89 to your computer and use it in GitHub Desktop.
Save abhishekdagarit/05fb08fd2e00c4816575f68c3fd2bb89 to your computer and use it in GitHub Desktop.
Flushing footer to bottom of the page, twitter bootstrap
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;
}
<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