I have a table with two columns. If i have defined a width of the left columns to be 100px, and have text in the right columns, e.g.
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td width="100px"></td>
<td width="260px">Some text</td>
</tr>
</table>
When I convert to PDF, it is not keeping the width of the first cell. Can this be done?
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td width="100px"></td>
<td width="260px">Some text</td>
</tr>
</table>
When I convert to PDF, it is not keeping the width of the first cell. Can this be done?