This is an archived forum post. The information may be outdated. Contact us if you have any questions.

Check-boxes are not displaying in pdf

puneetsharma wrote on 2010-07-27:
Hi,

I have some check-box in my html file and when i am converting the HTML into PDF check-box are not shown in PDF.

Is there any way.... to show a check-box in generated pdf.

I am using php.

Thanks in advance.
support wrote on 2010-07-27:
Checkboxes are not rendered to PDF at the moment. We will fix that.
puneetsharma wrote on 2010-07-29:
ok cool,

One more thing, If I want to divide a single html page in two PDF pages from the position in html page I want than what I have to do for that?
support wrote on 2010-07-29:
You can use page-break-after or page-break-before CSS properties. They can be applied to block-level elements.

Example:

<html>
  <body>
    <p>Page 1</p>
    <div style="page-break-after: always"></div>
    <p>Page 2</p>
  </body>
</html>
puneetsharma wrote on 2010-07-30:
Yes, its working. Thanks a lot.