Variable Height with overflow auto

PixelPusher

Super Moderator
Staff member
You will need to use a layering effect with positioning and z-index. In a sense the text [layer] will be beneath the footer and header and will need to have padding applied to the top and bottom to make up for the header and footer height values (so all the text can be seen when scrolling).

Code:
height:100%;

This will need to be applied to the immediate parent element in addition to the body and html.

Just out of curiosity, why do you want the internals to scroll and not the entire web page?
 
Top