Hey all,
Does anyone have any tips when coding superscript for email newsletters? My client uses insane amounts of superscripted characters (usually to reference the legal fine print) and I've been having to resort to using images instead of just coding them with regular characters otherwise it will cause the line spacing to go crazy.
My code works fine in AOL Mail and Gmail, but seems to be disregarded in Yahoo Mail and Hotmail (I assume because they're stripping out the CSS?)
I have this in the <head>:
Along with this In the <body>:
I've also tried inline code, but that still doesn't work (and causes issues in Gmail to boot!):
Any help would be greatly appreciated!
Thanks.
Does anyone have any tips when coding superscript for email newsletters? My client uses insane amounts of superscripted characters (usually to reference the legal fine print) and I've been having to resort to using images instead of just coding them with regular characters otherwise it will cause the line spacing to go crazy.
My code works fine in AOL Mail and Gmail, but seems to be disregarded in Yahoo Mail and Hotmail (I assume because they're stripping out the CSS?)
I have this in the <head>:
Code:
<style type="text/css"> sup { vertical-align: baseline; position: relative; bottom: .33em; } </style>
Code:
<sup>®</sup>
Code:
<sup style="vertical-align: baseline; position: relative; bottom: .33em;">®</sup>
Thanks.
Comment