Footer not at bottom under FireFox 24.0

Issue #4 resolved
Stefan Ritt created an issue

Looks like the CSS footer placing at the bottom of the window does not work properly under FireFox. Left is Chrome, right is FF 24.0 under OS X.

Comments (5)

  1. Katie Wildflower

    Okay fix pushed - once again an example of the dangers of developing in Chrome. The trouble was that div.wrapper had min-height:100%, which is technically totally meaningless unless wrapper's parent element, body, has a defined height since the 100% is relative to the parent height. Body didn't used to have a specified height, but in this case Chrome guesses correctly what is meant - 100% of the next element upstream, in this case the window I guess, while FF does the technically correct thing and ignores the non-spec-compliant rule. Putting height:100% on body fixes this. Plz close if this looks good to you.

  2. Stefan Ritt reporter

    Bill, can you declare this issue resolved (Just click on "Resolve" button at the top right).

  3. Log in to comment