Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/83.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php MPDF-第一页的不同背景_Php_Html_Css_Mpdf - Fatal编程技术网

Php MPDF-第一页的不同背景

Php MPDF-第一页的不同背景,php,html,css,mpdf,Php,Html,Css,Mpdf,我正在使用MPDF生成HTML代码的PDF文件。不幸的是,第一页的布局与其余页面不同 有没有办法让第一页的背景与其他页面不同? 布局如何,有没有办法将页眉和页脚设置在不同的位置,或者将整个页眉从第二页移到最后一页? <style> @page :first { background: url("http://example.com/first.svg") 50% 0 repeat; } @page { background: url("http://example.c

我正在使用MPDF生成HTML代码的PDF文件。不幸的是,第一页的布局与其余页面不同

有没有办法让第一页的背景与其他页面不同? 布局如何,有没有办法将页眉和页脚设置在不同的位置,或者将整个页眉从第二页移到最后一页?


<style>
@page :first {
    background: url("http://example.com/first.svg") 50% 0 repeat;
}
@page {
    background: url("http://example.com/page.svg") 50% 0 repeat;
}
...
</style>
@页码:第一页{ 背景:url(“http://example.com/first.svg)50%0重复; } @页面{ 背景:url(“http://example.com/page.svg)50%0重复; } ...

@页码:第一页{
背景:url(“http://example.com/first.svg)50%0重复;
}
@页面{
背景:url(“http://example.com/page.svg)50%0重复;
}
...