I came across a weird problem when trying to use TCPDF to create pdf off of my html. I am using
$pdf->writeHTML($myHTML, true, 0, true, 0);
to write my html content and within the pdf
<tr>
<td style="width: 2%"></td>
<td style="width: 48%;text-align: left;">
<?php echo $text; ?>
<br />
<table>
<tr>
<td style="width:10px;"></td>
<td style="font-size: 22px;"><?php echo $comment;?></td>
</tr>
</table>
</td>
<td style="width: 8%;"><?php echo $dur?></td>
<td style="width: 8%;"><?php echo ''; ?></td>
<td style="width: 12%;"><?php echo $xyz; ?></td>
<td style="width: 11%;"><?php echo Price(); ?></td>
<td style="width: 11%;"><?php echo new_Price() : ''; ?></td>
</tr>
Here we can see in image, When the text in the cell is longer than width; line breaks, and disregards the td with width 2% in this case before "Successful".
Same goes for another text below in $comment
, before "nothing" it disregards the td.
how can I make it all align properly.
Still open for an answer
I still haven't been able to find a definite better answer. I am posting this answer incase someone else is facing the same problem and is looking for urgent solution.