I am working on mpdf and it is a good library to convert html page to pdf, but when I put block element e.g <div><p>
inside table cell it doesn't behave like a block element, it behaves like inline element.
code:
<td><div>Block Element</div></td>
or
<td><p>Block Element</p></td>
Is there a way to make it block element?
Or should I use other library?
Thanks in advance.