第二页上的上边距不起作用-Laravel DOMPDF

时间:2019-06-20 04:10:18

标签: html css laravel laravel-blade dompdf

当您尝试在第二页上应用上页边距时,页眉行为不正确。

第1页: enter image description here

第2页: enter image description here

CSS

body {
    font-family: Arial, Helvetica Neue, Helvetica,sans-serif;
    font-size: 14px;
}

@page {
    margin: 100px 25px;
}

header {
    position: fixed;
    top: -70px;
    left: 0px;
    right: 0px;
    height: 50px;
}

main {
    margin-top: 60px;
}

footer {
    position: fixed;
    bottom: -100px;
    left: -60px;
    right: -60px;
    background-color: #3f8d99;
    height: 60px;
    border-top: 1px solid #333;
    font-size: 12px;
    width: 100%;
    padding-top: 6px;
    padding-left: 60px;
    padding-right: 60px;
    color: white;
}

footer .pagenum:before {
    content: counter(page);
}

footer .pagenum-container {
    margin-top: 16px;
    float: right;
}

我试图遵循一些想法,尤其是从这个Post出发,但是我没有成功。

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

我找到了解决问题的方法。我更改了CSS文件的某些行。

@page {
    margin: 140px 25px 100px 25px;
}

header {
    position: fixed;
    top: -136px;
    left: -60px;
    right: -60px;
    width: 100%;
}

并删除了主类。

/*main {
    margin-top: 30px;
}*/

查看结果。第2页:

enter image description here