我正在使用HTML
将pdf
转换为dompdf
文件。它工作正常。但问题是我需要为所有页面设置页边距除了第一页。第一页应该有一个覆盖整个页面的图像。但现在所有页面的利润都在增加,包括第一个页面。
我无法禁用第一页的保证金。任何帮助是极大的赞赏。提前谢谢。
以下是我的css
<style type="text/css">
body { margin: 0px; }
@page { margin: 50px; }
#header {
position: fixed;
left: 0px;
top: -52px;
height: 50px;
border-bottom: 2px solid #797979;
margin: 0;
}
#footer {
position: fixed;
left: 0px;
bottom: -52px;
height: 50px;
border-top: 2px solid #797979;
margin: 0;
}
#footer .page:after { content: counter(page); }
.firstpage {
position: absolute;
page-break-after: always;
top: -50px;
width: 100%;
margin: 0;
}
.otherpages{ margin: 0; }
</style>
这是我的HTML
<div class="firstpage">
<img src="pdf-bg.jpg" style="width:100%; height:auto;/>
</div>
<div id="header">
<p><?php echo date("F j, Y"); ?></p>
</div>
<div id="footer">
<p class="page">Page <?php $PAGE_NUM ?></p>
</div>
<div class="otherpages">
some content
</div>
答案 0 :(得分:3)
试试这个,
@page { margin: 50px 0; }
.firstpage {
position: absolute;
page-break-after: always;
top: -50px; // compensating for @page top margin
width: 100%;
margin: 0;
}
.otherpages{ margin: 0 50px; }