I'm uncertain if this is feasible:
My webpage consists of multiple stacked divs with content. I'd like to have a 100px tall image or background at the very bottom, beneath all the other divs. However, I want the browser to display scrollbars for navigating through the content, but not necessarily scrolling down to view the bottom image.
Is there a way to use CSS settings on that bottom image so the browser doesn't treat it as content? I'm unsure if this can be achieved.
Alternatively, I could include the image in the body's background, but then how can I ensure it always appears below the content divs, especially when their heights are variable due to changing content?
UPDATE
Check out this link for a visual representation of what I'm attempting: http://jsbin.com/ojejad/2/edit
When scrolling down, the green section shows up because it's considered part of the page content. Is there a way to make the browser disregard the green section so scrolling stops at the bottom of the blue div?
The purpose is to only display the green image at the bottom if the user's screen size allows them to see it without scrolling. If the monitor is too small, I don't want users to needlessly scroll down just to view the image since it's meant to be more of a background element rather than crucial content.