mpdf @page css在所有浏览器中都不能用于打印页面大小

时间:2016-11-24 12:41:22

标签: php css printing mpdf

我正在使用以下css进行打印,使用mpdf在pdf文件中使用此尺寸(A4,A5)进行横向和纵向打印但在所有浏览器中都不能正常工作。请给我任何解决方案,或者为我提供另一个例子。

$html="
<html>
<head>
    <style>
        @page {
            size: 8.5in 11in landscape;
            margin: 10px;
        }

    </style>
</head>
<body>
<h2>Print this heading for all printing page with landscape and portrait orientation.</h2>
</body>
</html>";

$mpdf = new mPDF(); 
$mpdf->AddPage();
$mpdf->SetFont('Arial','',12);
$mpdf->WriteHTML($html);
$mpdf->AliasNbPages();
$mpdf->Output();

0 个答案:

没有答案