Forum How do I...?

Keep Empty table cells width

KeishaMcCay
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?
mikeday
In Prince 10 you can specify width="100" (without the px unit) or use style="width: 100px".