【发布时间】:2013-12-08 20:31:58
【问题描述】:
【问题讨论】:
标签: php pdf-generation tcpdf
【问题讨论】:
标签: php pdf-generation tcpdf
您可以使用“rowspan”和“colspan”属性来实现这一点。经验:
<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>
【讨论】: