gpt4 book ai didi

html - 某些浏览器中缺少表格边框。(边框折叠)

转载 作者:行者123 更新时间:2023-11-27 23:09:30 25 4
gpt4 key购买 nike

如下表结构表格边框在某些浏览器中显示,在某些浏览器中不显示。

.test-table, table.test-table th, table.test-table td {
border: 1px solid black;
border-collapse: collapse;
padding: 5px !important;
}
.test-td{
border-bottom:0px !important;
}
<table class="test-table">
<tbody>
<tr>
<td colspan="2">Heading 1</td>
<td rowspan="2">Heading 2</td>
</tr>
<tr>
<td>Test </td>
<td>Test </td>
</tr>
<tr>
<td colspan="2">Test</td>
<td rowspan="2" class="test-td">Test</td>
</tr>
<tr>
<td>Test</td>
<td>Test</td>
</tr>
<tr>
<td colspan="2">Test</td>
</tr>
<tr>
<td colspan="2" class="common-heading">Test</td>
</tr>
<tr></tr>
</tbody>
</table>

在浏览器中查看下面的表格截图:

火狐桌面

enter image description here

Chrome 表

enter image description here

Firefox 表结构是正确的结构,但在 Chrome 中显示不正确。这段代码有什么问题?如何让每个浏览器的表结构都一样?

最佳答案

为该 Cell 设置 rowspan=4,如下所示

.test-table, table.test-table th, table.test-table td {
border: 1px solid black;
border-collapse: collapse;
padding: 5px !important;
}
.test-td{

}
   

<table class="test-table">
<tbody><tr>
<td colspan="2">Heading 1</td>
<td rowspan="2">Heading 2</td>
</tr>
<tr>
<td>Test </td>
<td>Test </td>
</tr>
<tr>
<td colspan="2">Test</td>
<td rowspan="4" class="test-td">Test</td>
</tr>
<tr>
<td>Test</td>
<td>Test</td>

</tr>

<tr>
<td colspan="2">Test</td>
</tr>
<tr>
<td colspan="2" class="common-heading">Test</td>

</tr>
<tr></tr>
</tbody></table>

关于html - 某些浏览器中缺少表格边框。(边框折叠),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46903036/

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