Hi.
We are using a lot of tables in our WORD-Documents. The Documents are created using DOCX4J and immediately after creating they are converted to HTML (using the code from the samples).
All tables used are Setup with "preferred width = 100%" and the size of the columns is calculated at runtime and also Setup as pct (percentage). Here is the tblpr for the complete table:
TblWidth tblwidth = objectFactory.createTblWidth();
tblwidth.setW( BigInteger.valueOf( 5000) ); ...