我们分别为PDF标题和正文提供了不同的模板。 现在我们想在不同的页面上使用不同的标题。 我们正在使用NReco将HTML转换为PDF,版本为1.1.12。
答案 0 :(得分:0)
你可以使用这样的东西
现在你只需要将类设置为ur header父元素就像我在这里做的那样
打印p1-header添加类p1,打印p2-header将类p2添加到该特定页面上的容器
<header class="p1">
// this p1-header will be visible only rest will hide
<h1 class="p1-header">some text p1</h1>
<h1 class="p2-header">some text p2</h1>
<h1 class="p3-header">some text p3</h1>
</header>
.p1-header, .p2-header, .p3-header{
display: none;
}
.p1 .p1-header{
display: block;
}
.p2 .p2-header{
display: block;
}
.p3 .p3-header{
display: block;
}