首页 > 解决方案 > Mpdf 删除标题和正文内容之间的空格

问题描述

我试图删除标题(动态)和正文(动态)之间的空白,但无法使其正常工作。请找到以下图片

在此处输入图像描述

空间随着标题内容而增加,请找到下图 在此处输入图像描述

我正在为 mpdf 使用以下代码

$mpdf = new Mpdf();
$mpdf->setAutoBottomMargin = 'stretch';
$mpdf->setAutoTopMargin = 'stretch';  
if ($header != '') {
    $mpdf->SetHTMLHeader('<p class="text-center" style="margin:0px;padding: 0px!important">' . $header . '</p>', '', true);
}
if ($footer != '') {
    $mpdf->SetHTMLFooter('<p class="text-center" style="margin:0px!important">' . $footer . '</p>', '', true);
}

用于在每个页面上显示页眉和页脚的拉伸

标签: phpmpdf

解决方案


尝试添加此配置:

$config = array(
    'format' => 'A4',
    'mode' => 'utf-8',
    'orientation' => 'P'
    'margin_top' => -30,
    'margin_header' => 2,
    'setAutoTopMargin' => 'pad',
);

推荐阅读