如何在生成html到pdf时添加页面边框

时间:2017-12-22 09:39:14

标签: wkhtmltopdf phpwkhtmltopdf

如何使用wkhtmltopdf库将所有生成的pdf页面的页面边框从HTML添加到pdf?

我试过

div.page
{
    page-break-after: always;
    page-break-inside: avoid;
    border: 5px double !important;
}

但没有运气。

Simmilar问题:add border to pages printed using wkhtmltopdf

编辑: enter image description here

1 个答案:

答案 0 :(得分:0)

只需使用下面的CSS创建一个HTML页面,然后尝试使用wkhtmltopdf生成pdf文件

<html>
<head>
<style>
 body {
  width: 100%;
  height: 2000px;
  margin: 0;
  padding: 0;
}

.border {
  position: fixed;
  top: 0;
  left: 0;
  border: 5px double;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  page-break-after: always;
  page-break-inside: avoid;
  box-sizing: border-box;
}
</style>
</head>
<body>
<div class="border"></div>
</body>
</html>