Search code examples
cssgmailbackground-imagebackground-position

Is there an alternative to "background-position" to have support in Gmail?


According to this CSS guide, Gmail, does not support background-position, left, right, and other CSS properties.

I have a div with background and I want to put this image on right of that div.

Here is my HTML -

 <div style="background-image: url('pic.jpg'); background-position:right; background-repeat: no-repeat;" dir="rtl">

As Gmail doesn't support the background-position I'm not getting the desired output.
Is there any way to achieve this?


Solution

  • Use short hand method. It will let you use background position in Gmail.

    background: url(path/to/image.jpg) no-repeat left;