这正是我要完成的:
+--------screen-----------------------+ | ______________________ |*| | |_static_header______| |*| | | | | |*| | | content |menu | |*| | | scrollable |static| |*| | | | | |*| | | | | |*| | | | | |*| +-------------------------------------+
内容的高度可变,内容滚动条必须显示在页面正文中(而不是在其上).
我设法得到了基本的想法,但是当滚动条显示时,我无法将内容div置于正确的位置,即使我设置为始终显示滚动条,我也不能使用固定宽度,因为它们不同从浏览器到浏览器.
<div style="position:absolute; background-color:Transparent; left:0px; right:0px; height:100px; z-index:2;"> <div style="background-color:Silver; width:1000px; height:100px; margin:0 auto;"> Header </div> </div> <!-- Fixed div acting as the body "page" so the scrollbar shows as the page's --> <div style="position:absolute; left:0px; top:0px; bottom:0px; right:0px; overflow-y:auto; padding-top:100px; z-index:1;"> <div style="position:relative; width:800px; height:100%; margin:0 auto; padding-right:200px;"> <div style="background-color:Orange; width:100%; height:900px;"> Content </div> </div> </div> <div style="position:absolute; left:50%; right:0px; padding-top:100px; z-index:0;"> <div style="width:500px; float:left;"> <div style="background-color:Green; float:right; width:200px; "> Menu </div> </div> </div>
在上面的代码中,内容由滚动条宽度关闭,如何在页面的其余部分获得正确的权限(即,即使它有一个也可以计算它的位置,而不考虑滚动条的宽度)?
解决方法
如果我明白你的问题,这将是一个解决方案:
http://jsfiddle.net/7pJS8/