6

Can somebody tell me why mPDF doesn't accept this code to avoid page break inside my div

    <div style="page-break-inside:avoid !important;">
       multi
       line
       content
    </div>
Umbrella
  • 4,733
  • 2
  • 22
  • 31
Manic Depression
  • 1,000
  • 2
  • 16
  • 34

1 Answers1

1

may be, set in your extension mpdf -> config.php and set

tableMinSizePriority

to be false
like this
$this->tableMinSizePriority = false;

Yanuar Ihsan
  • 115
  • 11