Forum


Replies: 1   Views: 2793
Text align to table within table or how to keep a table from dropping individual rows onto next page
Topic closed:
Please note this is an old forum thread. Information in this post may be out-to-date and/or erroneous.
Every phpdocx version includes new features and improvements. Previously unsupported features may have been added to newer releases, or past issues may have been corrected.
We encourage you to download the current phpdocx version and check the Documentation available.

Posted by risto.veijonen@deloitte.fi  · 19-01-2018 - 07:28

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?