gpt4 book ai didi

html 布局问题 : how to achieve this layout?

转载 作者:太空宇宙 更新时间:2023-11-04 13:11:21 25 4
gpt4 key购买 nike

我有三列布局。在第三列中,我有两个 div。第一个 div 是固定的。第二个 div 的最小高度为 50px。当第二个 div 中的文本内容增加时,它的高度应该增加到到达第三列底部的点,然后它应该显示滚动条。

到目前为止,我已经在这里付出了努力:http://jsfiddle.net/Q2Ata/1/

我试图实现这种布局,但是当我在里面添加更多文本时,主表的高度也会增加。这个问题可以在这个 fiddle 中找到。 http://jsfiddle.net/Q2Ata/2/

HTML代码:

<div class="table">
<div class="table-cell">
<div class="column">Column 1</div>
</div>
<div class="table-cell">
<div class="column">Column 2</div>
</div>
<div class="table-cell">
<div class="column">
<div class="container">
<div class="header">
<div class="table-cell">Header</div>
</div>
<div class="content">
<div class="abc">
text content here ...
</div>
</div>
</div>
</div>
</div>
</div>

CSS 代码:

.table {display:table;width:100%;height:200px;max-height:200px;table-layout:fixed}
.table-cell{display:table-cell;padding:10px;vertical-align:top}
.column{border:1px solid #000;height:100%}
.container{display:table;width:100%}
.header, .content{display:table-row}
{display:table-row}
.container .table-cell{border:1px solid #F00}
.abc{min-height:50px;padding:10px;border:1px solid #000;height:auto;overflow-y:auto}

最佳答案

您需要在您的元素上设置一个 max-height 以使 overflow: auto 正常工作,当达到最大高度时您将有滚动条.

http://jsfiddle.net/Q2Ata/4/

关于html 布局问题 : how to achieve this layout?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24673647/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com