gpt4 book ai didi

html - 如何整合表格中的所有 td 单元格

转载 作者:行者123 更新时间:2023-11-28 04:31:48 24 4
gpt4 key购买 nike

如何删除所有 <td> 之间的空格在<table>

看看这个:

<table>
<tr>
<td> one
</td>
<td> two
</td>
</tr>
<tr>
<td>three
</td>
<td> four
</td>
</tr>
</table>

输出是这样的:(here 是一个 fiddle )

+-----+ +----+
|one | |two |
+-----+ +----+
+-----+ +----+
|three| |four|
+-----+ +----+

我想要这个:

+-----+----+
|one |two |
+-----+----+
+-----+----+
|three|four|
+-----+----+

换句话说,删除行元素之间的空间。可能吗?

最佳答案

方法 1.您可以使用表格的 cellspacingcellpadding 属性:

<table cellspacing="0" cellpadding="0">
</table>

这是 JSFiddle demo .

方法 2. 使用 CSS border-collapse 属性。它看起来更漂亮,也更现代:

The border-collapse property sets whether the table borders are collapsed into a single border or detached as in standard HTML.

table {
border-collapse: collapse;
}

这是 second JSFiddle demo .

关于html - 如何整合表格中的所有 td 单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31979157/

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