email template position absolute?

Viewed 59780

Is it safe to use position:absolute in a email template?

5 Answers

absolute in css not working for HTML email. If you gonna use absolute for Image combination, you can use such style.

 background-image: url(url_to_your_image);

Hope it will help you.

Related