I am currently in the process of creating my own HTML email signature and I want to make sure that all the phone numbers are properly aligned.
Phone: (234) 567-8910
Cell: (234) 567-8910
Fax: (234) 567-8910
Email: [email protected]
I have tried adjusting margin sizes and adding on different lines, but this doesn't appear consistently across all email clients and web browsers.
Phone:<span style="margin-left:12px;"><?=$phone ?></span><br/>
Cell: <span style="margin-left:23px;"><?=$cell ?></span><br/>
Fax: <span style="margin-left:25px;"><?=$fax ?></span><br/>
Email: <span style="margin-left:14px;"><?=$email ?></span><br/>
Since using tables is no longer recommended, I want to find a solution without relying on them.
This email signature needs to be compatible with Outlook, which restricts the use of margin and float properties, among other things.