使用tcpdf防止Word Wrap在单元格中

时间:2011-05-23 00:05:12

标签: tcpdf

我正在使用TCPDF将html表转换为PDF,并希望阻止单个单元格包装文本。

我没有运气就试过<td style='white-space: nowrap;>

有没有办法强制tcpdf不在单个<td>标记中包装文本?

1 个答案:

答案 0 :(得分:3)

您没有正确关闭单个单引号,请查看

<td style='white-space: nowrap;>

将此代码更改为

$html ='<td style="white-space: nowrap;">';

然后使用

将此变量写入pdf
$this->pdf->writeHTML($html, true, false, true, false, '');