gpt4 book ai didi

html - 在 元素中添加 元素

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

我有一个 html 表格,其中一个标题跨越 2 列。如何向两列中的每一列添加子标题?

例如在附图中,我希望“联系人”列的各个列具有子标题“电话”和“地址”。

enter image description here

最佳答案

如果你在纸上画出表格,你会采用同样的方式:

<table>
<thead>
<tr>
<th rowspan="2">Name</th>
<th rowspan="2">Email</th>
<th colspan="2">Contact</th>
</tr>
<tr>
<th>Phone</th>
<th>Address</th>
</tr>
</thead>
<tbody>
<!-- your data goes here -->
</tbody>
</table>

关于html - 在 <th> 元素中添加 <th> 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11159688/

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