Hi,
I am trying to create a docx from an $html like this:
<html>
<body>
<table style='width: 100%'>
<tr>
<td style='width: 40px; max-width: 40px;'>A</td>
<td style='width: 80px; max-width: 80px;'>BBB</td>
<td style='width: 80px; max-width: 80px;'>CCC</td>
</tr>
</table>
</body>
</html>
using:
$docx = new \CreateDocx(); $docx->embedHTML($html);
but the resulting table on the docx has all the columns of the same width.
Thanks
Gianluigi