如果 table 中的文本很大,如何将文本拆分到另一页?
How to split text into another page if the text is large in table?
我的代码如下所示:
$html = '<table style="width: 793px; overflow: wrap" autosize="1">
<tr>
<td>small text</td>
<td>large text</td>
</tr>
<tr>
<td>small text</td>
<td>large text</td>
</tr>
</table';
$mpdf = new Mpdf();
$mpdf->shrink_tables_to_fit = 1;
$mpdf->WriteHTML($html);
我不知道为什么,但 mpdf 试图将一个 TR 放在一页上。但是如果 TD 中的文本很大,mpdf 会自动将字体大小调整到非常小。我需要在不更改字体大小的情况下将文本拆分为两页。
Note: mPDF will always resize tables if it is the only way to fit a row or whole table onto a full page.
如果需要跨页,将大文本拆分为多行。或者不使用表格。
我的代码如下所示:
$html = '<table style="width: 793px; overflow: wrap" autosize="1">
<tr>
<td>small text</td>
<td>large text</td>
</tr>
<tr>
<td>small text</td>
<td>large text</td>
</tr>
</table';
$mpdf = new Mpdf();
$mpdf->shrink_tables_to_fit = 1;
$mpdf->WriteHTML($html);
我不知道为什么,但 mpdf 试图将一个 TR 放在一页上。但是如果 TD 中的文本很大,mpdf 会自动将字体大小调整到非常小。我需要在不更改字体大小的情况下将文本拆分为两页。
Note: mPDF will always resize tables if it is the only way to fit a row or whole table onto a full page.
如果需要跨页,将大文本拆分为多行。或者不使用表格。