CSS
-Tricks
treehouse :
what would you like to learn today?
Web Design
Web Development
iOS Development
Show search box
Search
Search in:
All
Articles
Forums
Snippets
Videos
✕
Home
Forums
Snippets
Gallery
Videos
Almanac
Demos
Lodge
Navigation 'n' Search
Forums
Illustration by Nick Sirotich
Forums
»
CSS Combat
Having the footer at the bottom of the page.
djrolstad
Permalink to comment
#
April 2012
My website is
http://www.meadowbrookglitter.com/meadow
I want the footer at the bottom of the page at all times, how do I do this?
resweb
Permalink to comment
#
April 2012
try this code,
Html code
Your website content here.
CSS code
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -4em;
}
.footer, .push {
height: 4em;
}
Senff
Permalink to comment
#
April 2012
http://www.cssstickyfooter.com/
Add a Comment
I want the footer at the bottom of the page at all times, how do I do this?
Html code
Your website content here.
Copyright (c) 2008
CSS code
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -4em;
}
.footer, .push {
height: 4em;
}