这是 jsfiddle 链接:
html,body
{
height:100%;
width:100%;
overflow:hidden;
}
body
{
padding: 60px 0px;
height: 100%;
box-sizing: border-box;
}
.header
{
height:60px;
background:#000;
color:#fff;
width: 100%;
position: fixed;
top:0;
}
.body
{
overflow-y: scroll;
height: 100%;
}
.footer
{
height:60px;background:#000;position:fixed;bottom:0px;width:100%;color:#fff;
bottom:0
}
基本上我希望滚动条只出现在内容区域中,并且页眉和页脚应该始终出现。上面的链接在 Chrome 和 IE 中有效,但在 Firefox 中无效。滚动条位于页脚后面。有人可以解释一下我该如何解决这个问题吗?