Show page count of generated PDF? #12

Closed
opened 2 years ago by decentral1se · 1 comments
Collaborator

Would be super handy! Especially for planning the print as you build up the document.

Would be super handy! Especially for planning the print as you build up the document.
Poster
Collaborator

This is possible via CSS now:

@page {
  size: A4 portrait;
  counter-increment: page;

  @bottom-center {
    content: counter(page);
    padding-bottom: 5px;
  }
}
This is possible via CSS now: ```css @page { size: A4 portrait; counter-increment: page; @bottom-center { content: counter(page); padding-bottom: 5px; } } ```
decentral1se closed this issue 5 months ago
Sign in to join this conversation.
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date

No due date set.

Dependencies

This issue currently doesn't have any dependencies.

Loading…
There is no content yet.