dompdf HTML 到 PDF - 无法设置页边距
版本: 0.6.0 beta 3
我尝试以各种方式使dompdf设置页面的边距。我有一个很长的页面,有很多文字,分成几章......
我的css是这样的:
#wrapper{
padding:8px;
}
/* other styles... */
@page{margin: 0.2in 0.5in 0.2in 0.5in;}
当 php 是
<?php
ob_start(); // begin collecting output
include 'makemypdf.php'; // this page output the html
$html = ob_get_clean(); // retrieve output from makemypdf.php and stop buffering
require_once("dompdf/dompdf_config.inc.php");
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->render();
$dompdf->stream("sample.pdf", array("Attachment" => false));
?>
但我得到的是一个没有边距的页面!!!只应用#wrapper的填充...并且它们仅在整个PDF的开头和结尾应用...
我做错了什么?
PS - 似乎只应用了底边距...但我不确定...
PPS - 我尝试了这个css:body { margin-top: 40px; } html { margin-top: 40px; } @page { margin-top: 40px; }