Forum


Replies: 5   Views: 1995
Table with empty cell and space after table
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 admin  · 27-02-2020 - 15:41

Hello,

That gray rectangle doesn't appear using MS Word, it seems a LibreOffice/OpenOffice limitation, you can use   to avoid it:

<tr>
    <td>2 Quisque ac augue eu nibh</td>
    <td>&ensp;</td>
</tr>

About the other question, Google Docs has many limitations when working with DOCX documents (for example adding charts and other complex contents) as it doesn't comply with the OOXML standard correctly. You'll need to mix paragraph margins/paddings and line breaks to get the needed output.

Regards.