2013-11-24 32 views

回答

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>