cooltronicpl / Craft-document-helpers

Craft CMS 3 and 4, 5 alpha, beta plugin enabling PDF document generation from template Twig files, code blocks and URLs
Other
12 stars 6 forks source link

Prevent pagebreak in div #25

Closed simon-peeters closed 6 months ago

simon-peeters commented 6 months ago

If a div, for example at the bottom of a page, doesn't fit as a whole on the page, you should be able to add an option to prevent a pagebreak within this div. The pagebreak should happen right before this div.

cooltronicpl commented 6 months ago

Utilizing the PDF Generator plugin, you can now leverage the mPDF HTML property to control page breaks. Implement it with the following CSS parameter:

<div style="page-break-inside: avoid;">
    <!-- Insert your non-breakable content here -->
</div>

Can you test this property to confirm its effectiveness?

simon-peeters commented 6 months ago

It works great, thanks!