Contents are Overlapped after DOCX to HTML using .NET

Hi,

Greetings.

We use Aspose.words Java to convert docx file to html.

Now when we try to convert this docx file to html, the content overlaps with other contents.
It is difficult to use the converted HTML file.

Please suggest ways we can mitigate this and let us know your valuable suggestions to resolve this issue.

Please check the original docx file and the converted html file attached
overlapContent.zip (900.9 KB)

@EdwinPearson

Please note that Aspose.Words mimics the behavior of MS Word. If you convert your document to HTML using MS Word, you will get the same output. We suggest you please convert your document to HtmlFixed file format as shown below. Hope this helps you.

    Document doc = new Document(MyDir + "overlapContent.docx");
    doc.Save(MyDir + "21.3.html", SaveFormat.HtmlFixed);