So, I have one webpage that uses CSS text-shadow effect for the effect.
If I view a webpage in Chrome, the shadow shadow effect I expect will be.
But if I send an HTML email to my gmail account and view the page inside Gmail (using the same browser), the shadow shadow effect will disappear.
see related image. Part on the left is viewing the surf on the page, part on the right is the same html content that is sent to me in gmail. As you can see, the shadow effect has disappeared.
PICTURE HERE: Image
This is used by CSS:
<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 weird. Any ideas?
source share