gpt4 book ai didi

包含长字符串的列的 CSS 表格对齐问题

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

我有一个问题:我的表格显示完美,没有“分隔符”行。该行服务器将我的表的两个部分分开。此行中的列 (colspan=2) 包含一个长字符串,描述其下方的表格部分。不幸的是,这个长字符串的存在导致表格的其余部分变得错位。在调整表格大小时,我如何告诉表格有效地忽略此列,或者我如何解决该问题?

最佳答案

使用 colgroupcol 标签(以这种方式设置列宽)。然后将 table-layout: fixed; 添加到表格的 CSS:

<table>
<colgroup>
<col style="width:25%" />
<col style="width:25%" />
<col style="width:25%" />
<col style="width:25%" />
</colgroup>
<thead>
<!-- thead stuff here -->
</thead>
<tbody>
<!-- tbody stuff here -->
</tbody>
</table>

table { table-layout: fixed; }

关于包含长字符串的列的 CSS 表格对齐问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12963918/

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