HTML Bulletproof Background images in email

HTML Bulletproof Background images in email

HTML Bulletproof Background images in email

Bex Osborn

Marketing Strategist

5 Dec 2018

Incorporating all the fixes for background images - covering Outlook, Windows 10, Webkit and Gmail app non-gmail account (GANGA).

PizzaExpress background image At Action Rocket we keep abreast of all the latest hacks and fixes to ensure our clients get the best emails.

Background images can create some great effects in email design and really bring it to life.

They do cause some headaches though - Outlook 2007, 2010, 2013 all need vector markup language (VML) to display the image correctly as they use the Microsoft Word rendering engine.

Windows 10 also has similar quirks, but needs even more information than earlier outlooks, mainly the width and height being in point (pt) instead of pixels.

Webkit emails and the vast majority of modern email clients can use the normal CSS or html background and most recently Justin Khoo over at freshinbox discovered that another email client, that until the last month or so didn’t support background images, Gmail app non-Gmail accounts, the fix for this was the css background property,  but with the properties values set in shorthand.

Checkout all of the code below - this has every instance where background images are now supported covered:

Breaking it down Starting with a table and table row - we set up the email so it works in all outlooks.

Nothing new here.

The on the other hand is jam packed with fixes to ensure everything looks as it should.

We declare the bgcolor in html as a fallback and as a colour behind any png images.

Next the html background= property with a link to the image.

Next defining the html width height & valign.

Finally the inline style= with shorthand background CSS property and its values.

style="background:

url('https://via.placeholder.com/640x400') center / cover no-repeat #000000;" First, background:

url(‘image.png’) this references the image, which is a repeat of the above image specified in the html.

Followed by image position - center / size - cover , whether the image should repeat - no-repeat and finally the background color #000000 ;

These are all set to centralise the background image that is big enough to cover the content and not need to repeat.

Then we repeat the CSS shorthand background properties in ‘long form’ to cater for Yahoo/AOL - background-position:

center; background-size: cover; background-repeat: no-repeat;

There are a few more CSS background properties so you could customise your background image to be just right.

After the we start the VML:

The opening and closing MSO conditional comments ensure the VML only applies to the versions of Outlook that need it.

Followed by the v:image defining the image in VML.

We define the xml namespace xmlns:v="urn:schemas-microsoft-com:vml" then we define the values of the v:image property:

fill this is used to define attributes if anything other than a solid colour or image is used.

fill=”true” tells the vml image will fill the whole of the shape.

stroke is used to define if a line or border is used, in the case of a background image it isn’t so this is set to stroke=”false” .

These VML attributes are then followed by a style tag - most importantly containing the dimensions of the image as points - to get the correct number multiply the pixels by 0.75 e.g.

640px x 0.75 = 480pt. Last but no means least the image src .

Following the v:image we ‘draw a rectangle the same size for the image to sit in - v:rect with similar attributes.The main difference is the position:absolute;

to place the rectangle where we need it.

Next in the VML is the v:fill to set the color and opacity of the v:rect and v:image - this colour needs to be set the same as in the bgcolor and background:

color;

to ensure it is the same across all clients.

Lastly we define the v:textbox positioning to show we will be putting something over the above v:rect and v:image with the position starting from the top left at 0,0,0,0 .

After the closing VML you can add an optional

wrapped around the content.


This is to stop the 20px gap appearing after the image in some Outlook clients, especially when stacking background images on top of one another.

As the final html table tag we used was a we need to use correct syntax here and either fill the or start a new

to add the content.


This is then followed by the closing tags for all of the above, including the VML tags closed within an MSO conditional tag.

Last minute !important information Whenever you are creating a design, ensure it works without a background image.

Although it is supported, slow connection speeds on mobile, image blocking and weird edge cases and email clients could muck it all up! Above we define the background color wherever possible and this should contrast with any text that is being put on top.

Check out some other amazing resources across the #emailgeeks webspace! Litmus ultimate guide to background images - Jason Rodriguez Gmail IMAP (GANGA) Finally Supports Background Images in New Update - Justin Khoo Campaign Monitors Bulletproof Backgrounds - Stig Morten Myre Jay Oram Coder

Let’s

create

together

Got a project or want to know more about what we do? Drop us a message here, and we'll get back to you.

Let’s

create

together

Got a project or want to know more about what we do? Drop us a message here, and we'll get back to you.

© 2011-2024 Action Rocket Ltd. All rights reserved.