gpt4 book ai didi

html - 使用 colspan 时表格单元格边框不对齐

转载 作者:行者123 更新时间:2023-11-28 07:52:56 24 4
gpt4 key购买 nike

我正在尝试对齐两个 HTML 表格,一个在另一个下面。这样做的原因是我需要两个标题,并且它们都需要在用户滚动时保持固定。我正在使用 jQuery floatThead要实现这一点,但它只会 float 一个 thead 行。我的解决方法是这样的:

<div>
<table style="width:100%;">
<thead>
<tr>
<th colspan="2" style="width:50%;">Etc</th>
<th colspan="2" style="width:50%;">Etc</th>
</tr>
</thead>
</table>
</div>

<div class="floatTheadContainer">
<table style="width:100%;">
<thead>
<tr>
<th style="width:25%;">Etc</th>
<th style="width:25%;">Etc</th>
<th style="width:25%;">Etc</th>
<th style="width:25%;">Etc</th>
</tr>
</thead>
</table>
</div>

更真实的例子在JSFiddle - 即使宽度百分比相等,单元格边框也不对齐

最佳答案

你有 <th style="width:2%;"></th> ,它添加了额外的框。我假设这就是你想要的。这是一个 demo .

关于html - 使用 colspan 时表格单元格边框不对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30281249/

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