gpt4 book ai didi

html - table-cell 中宽度和高度为 100% 的 Div 在内容较大时更改 table-cell 的大小

转载 作者:行者123 更新时间:2023-11-28 10:10:47 29 4
gpt4 key购买 nike

我有一个表格,其中有一个由 html-table-algorithm 计算的单元格(右下角的单元格)。在我添加大于计算单元格的内容之前,它的工作方式与我期望的完全一样(如果您想测试它,请在两行中评论)。

有没有办法在不使用固定高度和宽度的情况下解决这个问题(因为第二行也是使用 html-table-algorithm 创建的,并且只有固定高度来说明示例中的它)?

点击here对于 JSFiddle。

HTML:

<table>
<tr style="height: 40px">
<td style="width: 200px;">3</td>
<td>4</td>
</tr>

<tr style="height: 40px">
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>1</td>
<td>
<div class="content">
<!--
<div style="border: 1px solid red; width: 3000px; height: 40px;"></div>
<div style="border: 1px solid red; width: 40px; height: 3000px;"></div>
-->
</div>
</td>
</tr>
</table>

CSS:

html, body {
height: 100%;
}

body {
margin: 0;
}

table{
border: 1px solid red;
width: 100%;
height: 100%;
min-width: 600px;
}

table tr td{
border: 1px solid orange;
}

.content{
border: 1px solid green;
height: 100%;
}

最佳答案

更新内容 css 类:

.content{
border: 1px solid green;
height: 100px;
max-width:100px;
max-height:100px;
overflow-x:scroll;
}

关于html - table-cell 中宽度和高度为 100% 的 Div 在内容较大时更改 table-cell 的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24393709/

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