我的目标是在 IE8 (&IE9) 中实现这样的结构。
不想使用 JavaScript,因为某些 3rd 方正在动态插入内容,这只会导致不同的滚动条比例。
我一直在寻找“大量”的时间,即相当多的时间。我无法理解和/或使用以下线程。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>
我可以在 Chrome 中实现这一点(图片=整个浏览器内容),底部的提琴手:
IE8/9 给了我这个(图片=整个浏览器内容,再次滚动到正文的底部):
谁能帮帮我?