我在我的网页上生成了一个看起来像经典窗口的弹出 div,可以最小化/调整大小/移动。
我需要它有一个 25 像素高的页眉,一个 50 像素高的页脚,然后窗口的主体总是采用“休息”,这是可变的,因为窗口可以调整大小。这个窗口的主体会动态更新它的 DOM,可以在其中添加元素。如果添加了足够多的元素,它们的组合高度超过了分配给窗口主体的高度,那么这个主体区域应该开始滚动,当用户滚动时,页脚始终保持在原位 - 它只是滚动的主体内容。
如何使用 CSS、jQuery 以及它与 IE8 一起使用来实现这一点?
代码应该如下所示,基本上:
<div id="wrap">
<div id="header">
... 25 px high space fixed to the top
</div>
<div id="body">
... stretches to fill the space available height/width ...
... scrollbars available when the body content exceeds height available ...
... jQuery allows user to resize the whole window, so this body should always fill ...
</div>
<div id="footer">
... 50px footer with controls, must always be fixed to bottom of window ...
... must never move no matter if the user scrolls the body ...
</div>
</div>
这可以完成,以便它可以跨浏览器工作吗?IE8+、火狐、Chrome?