When setting the width or height of something to 100% in CSS, it actually only fills up 100% of the browser window. Is there a way to make it take up 100% of the entire page?
To clarify: I want a div element to occupy the whole page, regardless of how much you scroll. Parent elements with 100% size and width do not achieve this because they are handled in the same manner. It seems like using JavaScript to determine the page's height and then setting that absolutely might be necessary.