Hello folks, I have this big dataset PDF that have a specific formatting. Everything work as charm, except that naming the pages is generating a blank page at the end of the document. Is there any way to avoid this? I've already tried all that came to my mind. The issue is that the document finished with that named page. If I add content after the named page it's ok. But not what I need.
Here is what my code looks like, nothing fancy
Thanks!
Here is what my code looks like, nothing fancy
.content-wrapper {
page: brands;
page-break-after: avoid;
}
.brand-group {
prince-page-group: start;
}
@page brands:first {
@top { content: none; }
padding-top: 0;
}
Thanks!