Css background-size and html email

I use the following to crop and center the image using css (sorry for the inline css, but this is just to explain my problem).

<div style="width: 236px;height: 233px;background-image:url('path-to-picture');background-size:cover;background-position:center center"></div>

This works fine in most browsers, but I need to reproduce the same in html email, and unfortunately email clients do not seem to recognize the "background-size".

Is there an easy way to crop images in html email?

Thank you for your help.

+4
source share
1 answer

background-size is not supported by a large number of email clients. He is very discouraged. See Which email clients support CSS3?

+3

All Articles