Hi, I need to create a word file from PHP. I create a HTML string into PHP and use PhpWord to create a file `$phpWord = new \PhpOffice\PhpWord\PhpWord(); \PhpOffice\PhpWord\Shared\Html::addHtml($section, $html); ` This is my simple table: _unfortunately I can't share the table code in this post_ `<table style='width: 100%'> <tr> <td style='width:50%'>Nome e Cognome</td> <td></td> </tr> <tr> <td>Luogo e data di nascita</td> <td></td> </tr>` Unfortunatly the column width is not recognized. the column width is adapted to the content. How can I solve the problem? Could you please help me? Thanks L