【发布时间】:2018-02-21 17:34:23
【问题描述】:
【问题讨论】:
-
需要使用rowspan和colspan
-
到目前为止,您尝试了哪些方法来在 html 中创建这样的表格?
【问题讨论】:
这是使用 rowspan 和 colspan 的示例。
<table border="1" cellspacing="0">
<thead>
<tr>
<th rowspan="2">header</th>
<th rowspan="2">header</th>
<th colspan="4">header</th>
<th rowspan="2">header</th>
</tr>
<tr>
<th>subheader</th>
<th>subheader</th>
</tr>
</thead>
更多信息请参考this
【讨论】: