Hi,
I'm using docx4j-ImportXHTML 8.2.1 and I'm trying to convert a html table to a docx document, but the css inline style and the html property "border" does not remain when I use the property "border-collapse: collapse;"
This is an example when I use "border-collapse: collapse;"
<table width="100%" border="5" style="border-collapse: collapse;" >
<tr>
<td>Test Table Cell 1</td>
</tr>
</table>
The docx result is :

However when I use border-collapse: separate, the border and the style is well formatted
<table width="100%" border="5" style="border-collapse: separate;" >
<tr>
<td>Test Table Cell 1</td>
</tr>
</table>

Thank you very much in advance!
Hi,
I'm using docx4j-ImportXHTML 8.2.1 and I'm trying to convert a html table to a docx document, but the css inline style and the html property "border" does not remain when I use the property "border-collapse: collapse;"
This is an example when I use "border-collapse: collapse;"
The docx result is :

However when I use border-collapse: separate, the border and the style is well formatted
Thank you very much in advance!