I am striving for a layout similar to this in IE8 (&IE9).
I prefer not to use JavaScript, as some external entity is injecting content dynamically, which should only result in a different scrollbar scale.
I have spent a considerable amount of time searching for a solution. Unfortunately, I have been unsuccessful in comprehending or implementing the guidance provided in this thread: StackOverflow: make-iframe-to-fit-100-of-containers-remaining-height
<!DOCTYPE html>
<html>
<body>
<p>Some text with unknown height, fixed at the top.</p>
<div>
Some content that will not exceed the body (100% height),
but will fill the body until the content is too long, which would give
a scrollbar.
</div>
</body>
</html>
I have successfully achieved this in Chrome (see image = entire browser content), with the fiddler positioned at the bottom:
However, in IE8/9, I encounter this issue (see image = entire browser content, once again scrolled to the bottom of the body):
Chrome works perfectly fine in the fiddler example.
If anyone can offer assistance, it would be greatly appreciated.