0

我知道这已经讨论了很多次,我尝试了一切但没有成功。

我尝试的一切都没有任何效果,其他 css 工作完美。我不明白为什么不将 div 中断到另一个页面。

这是我的代码:

HTML

<html>
<head>    
  <title> PDF </title>
  <style>

*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

* {
overflow: visible !important;
}

.myrow { 
float:left;
width:100%;
padding:20 10px; 
}

    .pagebreak {
     page-break-after:always;
     clear:both;
     display:block;
     }

  </style>
</head>

<body>

  <div class="myrow">
    Content
    </div>
  <div class="myrow">
    Content
    </div>
  <div class="myrow">
    Content
    </div>
  <div class="myrow">
    Content
    </div>

  <div class="pagebreak"></div>

  <div class="myrow">
    Content
    </div>
  <div class="myrow">
    Content
    </div>

  <div class="pagebreak"></div>

  <div class="myrow">
    Content
    </div>
  <div class="myrow">
    Content
    </div>

  </body>
  </html>

我的 PHP

$pdf = new Pdf(array(

'margin-top'    => 0,
'margin-right'  => 0,
'margin-bottom' => 0,
'margin-left'   => 0,
'disable-smart-shrinking',
'print-media-type',

));


 $pdf->addPage(page.html);

为什么不工作?

4

0 回答 0