我按照下面的代码设置了我的 HTML、CSS。我还添加了一个 JSFiddle 链接,因为这样可以更方便地查看实际代码。
我遇到的问题是,当#inner-right
div 中的#right-col
div 中有很多文本时,我希望滚动条#inner-right
仅显示. 我当前的代码显示了两个滚动条:#inner-div
和#right-col
. 如果我将 CSS 更改#right-col
为overflow: hidden
以摆脱外部滚动条,则内部滚动条也会消失,并且#inner-right
不再遵守max-height
规则。
我该如何设置它,以便滚动条仅#inner-right
在其内容变得太大时才显示。
html, body {
height: 100%;
}
#wrapper {
height: 100%;
display: table;
width: 700px;
}
#header, #footer {
display: table-row;
height: 30px;
}
#body {
height: 100%;
display: table-row;
background: rgba(255, 0, 0, 0.5);
}
#left-col, #right-col {
display: inline-block;
width: 320px;
height: 100%;
max-height: 100%;
margin-right: 20px;
border: 2px black solid;
vertical-align: top;
padding: 3px;
overflow: auto;
}
#inner-right {
height: 100%;
max-height: 100%;
overflow: auto;
background: ivory;
}
<div id="wrapper">
<div id="header">Header</div>
<div id="body">
<div id="left-col">
Lorem ipsum ... little text
</div>
<div id="right-col">
<div id="header-text">Header</div>
<div id="inner-right">
Lorem ipsum ...lots of text
</div>
</div>
</div>
<div id="footer">Footer</div>
</div>