I am experiencing an issue where the table content is being cut off on the right side of the page when converting from an HTML page into MS Word 2003. Below is a sample HTML code (where placeholder $CLOB_DATA will be replaced by large CLOB data):
<html>
<body>
<table width="80%" border="0">
<tr>
<td> Details: </td>
<td> $CLOB_DATA </td>
</tr>
</table>
</body>
</html>
Here is a screenshot of the test Word document converted from the above HTML code:
https://i.sstatic.net/5J5Tw.png
I have tried setting fixed width and word-break style to the table and td tags, but it's not working in the Word document. Can you please help me fit the text to the page?