When I do the following:
[code]
$html = '
<table border="0" style="width:158mm;">
<td style="padding:0px; background-color:#008080; text-align:left; padding:0pt 2pt;">
<span style="font-size:12pt; color:#FFFFFF; font-weight:bold; font-family:Tahoma,Arial;">SUMMARY AND ASSESSMENT CONCLUSION</span>
</td>
</table>';
$docx->addHTML($html);
$docx->setDefaultFont('Tahoma');
$docx->createDocxAndDownload('includes/reports/TEST');
[/code]
I get a table with some text in it but the text has a line spacing of 10pt below it. How can I remove the line spacing?
Thanks
Chris