答案 0 :(得分:0)
您可以使用“rowspan”和“colspan”属性来实现此目的。 exp:
<table border="1">
<tr>
<th rowspan="2">Rowspan 2<br />This is some text that fills the table cell.</th>
<th colspan="2">span 2</th>
<th colspan="2">span 2</th>
<th rowspan="2">2 rows</th>
<th colspan="8">Colspan 8</th>
</tr>
</table>