Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ページ数が不明な PDF を動的に生成しています。mPDF は正常に機能していますが、2 ページ目の上部余白がなくなりました。ドキュメントのすべてのページの余白を設定するにはどうすればよいですか?
次のことを試しましたが、効果がありません。
$mpdf = new mPDF('', '', 0, '', 15, 15, 15, 15, 8, 8);
このようなものを使用できます。うまくいくようです。
次のように @page を使用して余白を定義します。
<?php include("mpdf.php"); $html='<style>@page { margin: 0px; }</style> '; $mpdf=new mPDF('','A4'); $mpdf->WriteHTML($html); $mpdf->Output(); ?>