如何使用TCPDF打破行

时间:2013-11-24 03:11:45

标签: php pdf-generation tcpdf

我直接使用 like 来提高pdf速度。如何BREAKING ROWS like enter image description here

1 个答案:

答案 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>