请查看此http://jsfiddle.net/jaseem/sS7HN/。我想要实现的是代替内部滚动条,我想使用主窗口滚动条;所以,我可以使用Windows垂直滚动条来浏览“innerContent”内的内容,但同时我希望修复外部div。那可能吗?
CSS:
header {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 50px;
}
footer {
position: fixed;
left: 0;
bottom:0;
width: 100%;
}
content {
background-color:#656565;
width: 940px;
margin:0 auto;
padding-top:10px;
border-radius:5px;
}
mainContent {
margin:0px auto;
background-color:#515151;
width:660px;
border-radius:5px;
padding-top:20px;
}
contentHolder {
margin:0 auto;
width:616px;
background-color:#000000;
border-radius:10px;
overflow:auto;
}
HTML:
<div id="header"></div>
<div id="content">
<div id="mainContent">
<div id="contentHolder"></div>
</div>
</div>
<div id="footer"></div>
答案 0 :(得分:1)
有点不清楚你想要完成什么,但我确实注意到你缺少CSS中的哈希标签。如果您引用#
属性,则需要在标识符前面ID
。
CSS
#header {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 50px;
}
#footer {
position: fixed;
left: 0;
bottom:0;
width: 100%;
}
#content {
background-color:#656565;
width: 940px;
margin:0 auto;
padding-top:10px;
border-radius:5px;
}
#mainContent {
margin:0px auto;
background-color:#515151;
width:660px;
border-radius:5px;
padding-top:20px;
}
#contentHolder {
color:#fff;
margin:0 auto;
width:600px;
height: 400px;
background-color:#000000;
border-radius:10px;
overflow:auto;
}
答案 1 :(得分:0)
对于div元素,你必须在这里给#div名称你的div名称是contentHolder所以它的#contentHolder
尝试这样:
#contentHolder {
overflow:auto;
}
或
#contentHolder {
overflow:scroll;
}