How can I place a header, content, and footer inside a div element with absolute positioning, where the position value cannot be changed?
The header and footer have fixed heights, and the content should occupy the remaining space. The header should always stay at the top and the footer at the bottom.
The parent element should be resizable with a south resizable handle, and the content should adjust its height based on the parent element's height.
.content {
height: ?; /* How should I determine this value? */
}
Here is an example of the scenario: http://jsfiddle.net/7gPzF/26/