[quote=jorgelj]
Hello,
The next version of PHPDocX, 3.5.1, allows you to fix this issue forcing a width:
$html = '<table style="border-collapse: collapse; width: 200px;" border="1">
<tbody>
<tr>
<td width="200px;">123</td>
<td width="200px;">321</td>
</tr>
</tbody>
</table>';
$docx = new CreateDocx();
$docx->enableCompatibilityMode();
$docx->embedHTML($html);
$docx->createDocx('test');
Regards.
[/quote]
Don't work ((