Spipu,
Thanks for all your help.
Can you explain how I can get different font sizes to align themselves to the bottom of a table row. The following code renders itself aligned with the bottom of the row in HTML, but the smaller font aligns itself with the top of the row in PDF.
Code:
<table style="width: 100%; text-align: left;" cellspacing="0">
<tbody>
<tr>
<td>
<p style="font-family: times; font-style: normal; font-size: 18px; line-height: 200%; vertical-align: bottom;">
<span style="font-family: times; font-style: normal; font-size: 18px; line-height: 100%;">
I recommend <u>removing</u> the candidate from the eligible pool and <u>ceasing</u> all recruitment efforts
</span>
<span style="font-family: times; font-style: normal; font-size: 14px; line-height: 100%;">
(explain)
</span>
<br><br>
</p>
</td>
</tr>
</tbody>
</table>
Thanks again for your help.