I'm currently designing an HTML email signature for Outlook, but I'm having trouble with formatting and ensuring it looks consistent across different devices.
When I preview the HTML in my browser, it appears exactly as I intended. However, I am facing issues with the left row, which is meant to display a logo of equal width. I attempted to achieve this using text-justify: distribute, but I suspect that this feature is not supported by Outlook's outdated rendering engine. Does anyone know of a more reliable method to achieve this effect? I also experimented with letter-spacing, but the results varied too much between devices.
This is the desired appearance of the signature:
<html>
<body>
<table width="380" cellspacing="0" cellpadding="0" style="margin-top:0px; margin-bottom:0px; font-family:arial; color: #231f20; vertical-align:top"">
<tr>
<td style="FONT-SIZE: 14pt; border-right:#231f20 1.5px solid">
<span style="white-space:nowrap; font-weight:bold; display: inline-block; text-justify: distribute; text-align-last:justify; letter-spacing:2.7px;">
<span style="display:block; margin-bottom:4px;">ABCDEF<br></span>
<span style="display:block; margin-bottom:4px;">GHJKL<br></span>
<span style="display:block; ">MNOPQR</span>
</span>
</td>
<td
style="font-size:7.5pt; line-height:6pt; vertical-align:bottom; padding-bottom:3px; padding-left:17px">
<span style="display:block; white-space:nowrap; margin-bottom:0px;">Lorem ipsum dolor sit amet, consetetur sadipscing</span>
<br>
<span style="display:block; white-space:nowrap; margin-bottom:0px;">
Lorem ipsum dolor sit amet, consetetur</span>
<br>
<span style="display:block; white-space:nowrap; margin-bottom:0px;">Tel: <a href=""
style="text-decoration:none!important; color:#000000">+01 234 56789</a> · <a href="mailto:example.com"
style="text-decoration:none!important; color:#000000">www.example.com</a></span>
<br>
<span><a href="http://example.com"
style="white-space:nowrap; text-decoration:none !important; color:#000000; font-weight:bold;">www.example.com</a></span>
</td>
</tr>
</table>
</body>
</html>
Here is how the signature appears after importing it into Outlook: