我正在使用以下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();