如果你看这个小提琴:http: //jsfiddle.net/bastien/PybrF/1/
#header {
position: fixed;
top: 0px;
left: 0px;
height: 50px;
width: 100%;
background-color: yellow;
}
#content {
top: 51px;
left: 0px;
bottom: 0px;
width: 100%;
height: 100%;
position: fixed;
overflow: auto;
background-color: orange;
}
如果调整窗口大小,则垂直滚动条在内容 div 中可见。但是只有当我在调整窗口大小时超过了标题的像素高度时,它才会变得可见(所以对我来说似乎......)。
如何正确获取垂直滚动条?
更新
我想要一个保持固定的标题。我想要一个包含滚动条的内容。
像这样的东西:http: //jsfiddle.net/bastien/PybrF/7/
但垂直滚动条应该从内容 div 内部开始,而不是从标题/正文开始。