up vote 2 down vote favorite
1
share [g+] share [fb]

I'm having a hard time with a simple css snippet for footer text. The footer text must always be at the end of the page and the end of the screen whatever comes later.

link|improve this question

The end of the page and the end of the screen? Won't 'at the end of the page' be sufficient based on that? If the page runs off the bottom of the screen then the footer would be at the bottom of the page (ie: not visible on screen). If you scroll to the bottom of the page then the footer would still be at the bottom of the page but visible on screen... Maybe a code example of what you're trying to achieve might prevent me from tying my mind in logical knots... :) – Town Oct 14 '09 at 11:12
if the page is very short (just occupies half of the screen), then I still want the footer to be at the bottom of the screen, and not and the middle. – flybywire Oct 14 '09 at 11:27
feedback

3 Answers

up vote 0 down vote accepted
* {
    margin: 0;
}
html, body {
    height: 100%;
}
.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -142px; /* the bottom margin is the negative value of the footer's height */
}
.footer, .push {
    height: 142px; /* .push must be the same height as .footer */
}

/*

Sticky Footer by Ryan Fait
http://ryanfait.com/

*/
link|improve this answer
feedback

Use the bottom property:

#footer
{
    position:absolute;
    bottom:2px;
}
link|improve this answer
This would position it at the bottom of the viewport. If the page was longer it would not be at the bottom of the page (which the question specific). – Quentin Oct 14 '09 at 11:44
It would, if the body tag has position: relative; – gnud Oct 14 '09 at 12:01
@David yes it would - did you try it? I've used it on several projects. See w3schools.com/CSS/pr_pos_bottom.asp – ANaimi Oct 14 '09 at 18:54
feedback

For a working example which you could pick apart I had previously done this exact same thing for a client of ours:

Pushed Down Page - Fixed Position Page

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.