I have two div's one is taller than the other because of it's content and has no height value. I want the other one, which has no content other than a footer image, to be the same height so that the bottom of that div is flush with the bottom of the page. The closest thing I have come up with is:
position: absolute;
bottom: 0px;

But this places the bottom relative to the browser window and not the actual height of the page which needs a scroll bar.


Is it possible to do this?