Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to apply CSS3 box shadows inline to HTML E-mails?

Is it possible to apply the following box shadow to the CSS of an HTML E-mail template?

-webkit-box-shadow: 1px 3px 62px 25px rgba(223,231,232,1);
-moz-box-shadow: 1px 3px 62px 25px rgba(223,231,232,1);
box-shadow: 1px 3px 62px 25px rgba(223,231,232,1);

Or will I need to use images of the shadow and insert them into to table?

Many thanks.

like image 938
danelig Avatar asked Feb 20 '14 15:02

danelig


1 Answers

It is only supported in a few email clients. You are better off using images if you want 100% support

like image 92
John Avatar answered Oct 18 '22 01:10

John