"which bottom:0px say move the element 0px below its location."
That makes more sense. I thought it was saying move the bottom 0px from its container.
If I use absolute and then fill the page content won't the footer overlap the page content? I can try to set a bottom margin to the same size as the footer but I will have to see how that will affect my background. Worst case maybe I will just need to add another div for the page content so the background is still 100% high.
I will have a go and see what I can do. Thanks for the reply.
Main Topics
Browse All Topics





by: dachusaPosted on 2009-05-26 at 12:45:16ID: 24476835
Change to:
position: absolute;
bottom: 0px;
Right now you are going relative to the elements location, which bottom:0px say move the element 0px below its location.