According to documentation this should write a 100% width table but width is ignored: ``` php $table_style = array( 'unit' => \PhpOffice\PhpWord\Style\Table::WIDTH_PERCENT, 'width' => 100 * 50, ); $php_word->addTableStyle('myTable', $table_style); $table = $section->addTable('myTable'); ``` Only the following writes a 100% width table as expected: ``` php $table = $section->addTable(array( 'unit' => \PhpOffice\PhpWord\Style\Table::WIDTH_PERCENT, 'width' => 100 * 50, )); ``` <bountysource-plugin> --- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/27256909-cannot-set-table-width-through-a-style-defined-by-addtablestyle?utm_campaign=plugin&utm_content=tracker%2F323108&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F323108&utm_medium=issues&utm_source=github). </bountysource-plugin>