So, I have one web page that uses the CSS "text-shadow" for effect.
If I surf to the web page in Chrome the text-shadow effect is as I expect it to be.
But if I send an HTML email to my gmail account and view the page inside of Gmail (using the same browser), the text-shadow effect is gone.
see the linked picture. The part on the left is when surfing to the page, the part on the right is the same html content when sent to myself in gmail. As you can see, the shadow effect is gone.
PICTURE HERE: Picture
This is the CSS used:
<style type="text/css">
p { padding: 0; margin: 0; }
h1, h2, h3, p, li { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
td { vertical-align:top;}
ul, ol { margin: 0; padding: 0;}
.title, .date {
text-shadow: #8aa3c6 0px 1px 0px;
}
.textshadow {
text-shadow: #ffffff 0px 1px 0px;
}
.trxtshadow-2 {
text-shadow: #768296 0px -1px 0px;
}
</style>
Sounds odd to me. Any ideas?