Recently when coding and HTML email, I noticed that Yahoo! started hijacking certain links and keywords, adding a <span class='yshortcuts'>
which changes the colors of the text and links, which can cause some pretty bad rendering problems.
The 'fix' that Yahoo! suggested is pretty ugly (adding a span within all of the links and keywords that are affected) - far from an easy universal solution, especially when they apply the style to seemingly arbitrary text.
I am wondering if it is possible to simply over ride their class, and some how, with css, remove the color
attribute. (While <style>
blocks aren't supported in all major email platforms, Yahoo! does...and the ones that don't support it, gracefully ignore it.)
Something like
<style>
.yshortcuts{color:none;}
</style>
I know that color:none;
isn't valid, and doesn't work universally.
Any Ideas?