-1

How to avoid this issue, I want to avoid splitting the card into second pages. Thank you so much for your attention.

enter image description here

Minimumspace
  • 341
  • 2
  • 21
  • Can you update this question with some more code. then it would be easier for us to debugg it for you. https://stackoverflow.com/help/how-to-ask – Minimumspace Aug 16 '22 at 07:26

1 Answers1

1

if your pdf is generated from html, then you can use css control the page display. try add line in every page tail

<div style="break-after: always;"></div>

after this line, content will split to next page.

read doc here