So I have <HTML> form I am converting to docx with a table that has some cells aligned right <td style="text-align:right;">.
I didn't want the table to drop individual rows to another page as other parts of the form grew, so I added the table within an table and gave the parent table value: "page-break-inside: avoid;".
Now however the text-alignments are no longer working. I have tried style="float: right; text-align: right;" and the <td> value of align="right". None of them works now that the table is within another table.
Is there a way to either have one table that doesn't drop individual rows onto next page, but the whole content within the table?
OR
Is there a way to force the <td style="text-align:right"> to cells within table inside another table?