我的目标是在IE8(& IE9)中使用这样的结构 不想使用JavaScript,因为某些第三方动态插入内容,这只会导致不同的滚动条缩放。
我一直在寻找“充足”的时间,即相当多的时间。 我无法理解和/或使用以下主题。 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给了我这个(图片=整个浏览器内容,再次滚动到正文的底部):
谁能帮助我?
答案 0 :(得分:1)
厌倦了没有完成我想要的东西,毕竟我被迫使用JS(我发现没有人能够成功地回答我的问题,这个解决方案不是我实际要求的。)
小提琴比下面显示的更复杂,因为我需要这些额外的东西。
function adjustHeight() {
var header = document.getElementById("header");
var container = document.getElementById("container");
container.style.top = header.clientHeight + "px";
}
// Note the place of the method invocation ('asap'), adjustHeight()
<body>
<div id="header">
<p id="p">
Line1<br/>
Line2<br/>
Line3<br/>
Line4<br/>
</p>
<div id="toggle">Toggle</div>
</div>
<div id="container">
<script>adjustHeight();</script>
<div id="content">
First row visible<br/><br/>
Scrollbar shows normally<br/>
Body doesnt scroll<br/>
Works on resize too (by default)<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/>
One row..<br/><br/>
Last row visible on collapsed/expanded
</div>
</div>
</body>
答案 1 :(得分:0)
我看到你在这里使用的是div而不是iframe,这里应该是一个小提琴。 使用定位元素。
position:absolute;
bottom:0px;
top:80px;
left:0px;
right:0px;