To display justified text in a table cell, use the
<p> HTML tag within the
<td> tag with the attribute
align set to "justify."
So, instead of using:
<td align="style="justify">Your text here.</td>
Use this:
<td><p align="justify">Your text here.</p></td>