If you want to set the height of a div in CSS so it extends from the top of the page to the bottom, you can do it like this:
html, body, #xdiv {
height: 100%;
min-height: 100%;
}
The issue is that this code runs immediately, so when content loads, the height is no longer 100%. I am wondering, can JQuery or JavaScript be used to apply the above after the page has finished loading?