While coding and emailing HTML recently, I noticed that Yahoo! started capturing certain links and keywords, adding <span class='yshortcuts'>one that changes the colors of the text and links, which can cause some pretty bad rendering problems.
"Fix" that Yahoo! the proposed one is rather ugly (adding a range in all links and keywords that are affected) is far from a simple universal solution, especially when they apply style to seemingly arbitrary text.
I am wondering if you can just get over your class, and some can remove the attribute with css color. (Although blocks are <style>not supported on all major email platforms, Yahoo! does ... and those that don't support it gracefully ignore it.)
Sort of
<style>
.yshortcuts{color:none;}
</style>
I know that it is color:none;invalid and does not work everywhere.
Any ideas?
source
share