我使用html表中的MPDF库(php)生成pdf。当内容大于一页时,它会自动分为几部分(我在html代码或css中没有分页符)。
但是,该表不会在文本之后立即开始。它从新页面开始,留有空白。有时几乎是整个页面。
显示情况图片。库中以红色显示的空间。在该空间中输入表格的第一行。但是将它们放在下一页。
库的初始化如下:
$mode = 'es-x';
$format='A4';
$default_font_size=0;
$default_font='';
$mgl=12, $mgr=10, $mgt=14, $mgb=20;
$mgh=0, $mgf=10;
$orientation='P';
$this->pdf = new mPDF(
$mode,
$format,
$default_font_size,
$default_font,
$mgl, $mgr, $mgt, $mgb,
$mgh, $mgf,
$orientation
);
$this->pdf->allow_charset_conversion = true;
$this->pdf->charset_in = 'iso-8859-1';
$this->pdf->shrink_tables_to_fit = 1;
缺少什么使表格在文本之后继续显示?为什么要留空?还是强制表格从新页面开始?
谢谢。-