1

请看这个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>
4

2 回答 2

1

有点不清楚您要完成什么,但我确实注意到您在 CSS 中缺少哈希标记。如果您指的是属性,则需要#在标识符前面。ID

示例:http: //jsfiddle.net/hgcax/

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; 
}​
于 2012-12-20T04:30:07.993 回答
0

对于 div 元素,您必须在此处提供#div 名称,您的 div 名称是 contentHolder,因此它的 #contentHolder

试试这样:

#contentHolder {
 overflow:auto; 
}

或者

#contentHolder {
 overflow:scroll; 
}
于 2012-12-20T04:35:43.127 回答