gpt4 book ai didi

html - 固定 TD 高度与 rowspan 混合

转载 作者:太空宇宙 更新时间:2023-11-04 16:14:40 26 4
gpt4 key购买 nike

我不喜欢表格。

这是我正在使用的表格的简化版本:http://jsfiddle.net/bWghU/

代码如下:

table {
padding: 5px;
}
table th { padding: 0 5px }
table tr { background-color: #CCC }
table tr:nth-child(odd) { background-color: #FFF }
table td { border-bottom: 1px solid #555 }

<table>
<thead>
<th>Data</th>
<th>Data</th>
<th>Data</th>
<th>Data</th>
<th>Data</th>
<th>Data</th>
</thead>
<tbody>
<tr>
<td rowspan="10" style="background-color:red">this has a <br /><br /><br />min-height of ~100px<br /><br /><br /></td>
<td>one</td>
<td>two</td>
<td>two</td>
<td>two</td>
<td>two</td>
</tr>
<tr>
<td>two</td>
<td>two</td>
<td>two</td>
<td>two</td>
<td>two</td>
<td>two</td>
</tr>
<tr>
<td>two</td>
<td>two</td>
<td>two</td>
<td>two</td>
<td>two</td>
<td>two</td>
</tr>
<tr>
<td>two</td>
<td>two</td>
<td>two</td>
<td>two</td>
<td>two</td>
<td>two</td>
</tr>
<tr>
<td>two</td>
<td>two</td>
<td>two</td>
<td>two</td>
<td>two</td>
<td>two</td>
</tr>
</tbody>
<tbody>
<tr>
<td rowspan="2" style="background-color:blue">this has a <br /><br /><br />min-height of ~100px<br /><br /><br /></td>
<td>one</td>
<td>two</td>
<td>two</td>
<td>two</td>
<td>two</td>
</tr>
<tr>
<td>two</td>
<td>two</td>
<td>two</td>
<td>two</td>
<td>two</td>
<td>two</td>
</tr>
</tbody>
</table>

如您所见,rowspan 扼杀了我固定高度的梦想。我试过将 div 包装在里面(动态地),但没有成功。

我需要 TD 保持相同的高度,除了带有 rowspan 的高度(它需要根据需要扩展)- 这样 TD 就不会拉伸(stretch)。

最佳答案

您已将蓝色单元格设置为 rowspan 为 2,最小高度为 100px => 每行的高度必须为 50px(100px/2 行)。

关于html - 固定 TD 高度与 rowspan 混合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7754120/

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