How to avoid this issue, I want to avoid splitting the card into second pages. Thank you so much for your attention.
Asked
Active
Viewed 294 times
-1
-
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 Answers
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

user1702660
- 21
- 2
-
Thanks for your reply! I already tried this, but this doesn't work for me, – Muhammad Shaheer Aug 16 '22 at 07:58