I have used the InsertHtml
method of aspose word for mail merge, Where I am making on td (table cell) text centered but other cell text should be left-aligned, but all table cell text are left aligned.
The HTML used is
<html>
<body>
<table style="font:calibri;font-size:7pt;border:none;">
<td style="border:none;">
<table style="border:1pt solid black;font:calibri;font-size:7pt;margin-left:15pt;width:155pt;margin-bottom:15pt;">
<tr style="background-color:#d9d9d9;border:1pt solid black;height:20pt;">
<td colspan="2" style="text-align:center;border-bottom:1pt solid black;border-right:1pt solid black;"><b>Interviewer</b></td>
</tr>
<tr style="border:1pt solid black;height:30pt;">
<td colspan="2" style="border-bottom:1pt solid black;border-right:1pt solid black;">
</td>
</tr>
<tr style="border:1pt solid black;height:25pt;">
<td style="border-bottom:1pt solid black;border-right:1pt solid black;margin-left:0;"><b>Name</b></td>
<td style="font-weight:normal;border-bottom:1pt solid black;border-right:1pt solid black;margin-left:0;">Ram K Tambe</td>
</tr>
<tr style="border:1pt solid black;height:25pt;">
<td style="border-right:1pt solid black;margin-left:0;"><b>Job Title</b></td>
<td style="font-weight:normal;border-right:1pt solid black;margin-left:0;">Account Manager</td>
</tr>
</table>
</td>
<td style="border:none;">
<table style="border:1pt solid black;font:calibri;font-size:7pt;margin-left:15pt;width:155pt;margin-bottom:15pt;">
<tr style="background-color:#d9d9d9;border:1pt solid black;height:20pt;">
<td colspan="2" style="text-align:center;border-bottom:1pt solid black;border-right:1pt solid black;"><b>Interviewer</b></td>
</tr>
<tr style="border:1pt solid black;height:30pt;">
<td colspan="2" style="border-bottom:1pt solid black;border-right:1pt solid black;">
</td>
</tr>
<tr style="border:1pt solid black;height:25pt;">
<td style="border-bottom:1pt solid black;border-right:1pt solid black;margin-left:0;"><b>Name</b></td>
<td style="font-weight:normal;border-bottom:1pt solid black;border-right:1pt solid black;margin-left:0;">Ruth A. Eknath</td>
</tr>
<tr style="border:1pt solid black;height:25pt;">
<td style="border-right:1pt solid black;margin-left:0;"><b>Job Title</b></td>
<td style="font-weight:normal;border-right:1pt solid black;margin-left:0;">Test</td>
</tr>
</table>
</td>
<td style="border:none;">
<table style="border:1pt solid black;font:calibri;font-size:7pt;margin-left:15pt;width:155pt;margin-bottom:15pt;">
<tr style="background-color:#d9d9d9;border:1pt solid black;height:20pt;">
<td colspan="2" style="text-align:center;border-bottom:1pt solid black;border-right:1pt solid black;"><b>Approved By</b></td>
</tr>
<tr style="border:1pt solid black;height:30pt;">
<td colspan="2" style="border-bottom:1pt solid black;border-right:1pt solid black;">
</td>
</tr>
<tr style="border:1pt solid black;height:25pt;">
<td style="border-bottom:1pt solid black;border-right:1pt solid black;margin-left:0;"><b>Name</b></td>
<td style="font-weight:normal;border-bottom:1pt solid black;border-right:1pt solid black;margin-left:0;">Nazra Abdulla</td>
</tr>
<tr style="border:1pt solid black;height:25pt;">
<td style="border-right:1pt solid black;margin-left:0;"><b>Job Title</b></td>
<td style="font-weight:normal;border-right:1pt solid black;margin-left:0;">General Manager</td>
</tr>
</table>
</td></tr>
<tr></tr>
<tr>
</table>
</body>
</html>
after mail merge all cell text is centered but actually only the cell where text-align:centered
is set that cell should be centered rest should be left aligned.