Definition
An email background image is an image displayed behind text or other content within an email table cell, column, or full container. Unlike web development, where CSS background-image is universally supported, email background images face significant rendering limitations particularly in Microsoft Outlook. Outlook (2007–2021) uses Word's HTML rendering engine, which does not support CSS background-image on most elements.
The standard technique for background images in email uses a layered approach. For clients that support CSS background images — including Apple Mail, iOS Mail, Samsung Mail, and Thunderbird — the background or background-image property on a table cell works reliably. For Outlook, a Vector Markup Language (VML) fallback using v:rect and v:fill elements provides equivalent functionality. This bulletproof approach ensures background images display across all major email clients.
The full-width hero background image is the most common use case in email marketing. A background image spans the entire width of the email, often with a headline and call-to-action button overlaid. Without proper VML coding, Outlook would simply display the fallback background colour, breaking the design. Modern techniques also support background images on individual buttons, columns, and sections for more sophisticated layouts.
Best Practices
Always specify a fallback background colour that provides adequate contrast with overlaid text. If images are blocked or VML fails in a particular client, the background colour ensures the text and CTA remain legible.
Use VML for Outlook background images by wrapping the v:rect and v:fill elements inside an <!--[if mso]> conditional comment. Include the standard CSS background for all other clients outside the conditional.
Test background images with images disabled to verify that fallback colours create a readable layout. Approximately 43% of email opens occur with images blocked, so the no-image experience must be functional.
Keep background image files small. Background images are often large hero images; compress them aggressively and serve them at reasonable dimensions (typically no wider than 600–640 pixels for email).
Do not place critical text or calls to action solely on background images. Overlay live text with sufficient padding and a semi-transparent background or text shadow to ensure readability when the background image does not load.
Related Glossary Terms
Email Apple Mail
Apple's email client for macOS and iOS, known for the best CSS support among major email clients due to its WebKit rendering engine.
Email Bulletproof Button
A cross-client email button technique using VML for Outlook and standard HTML for all other clients, ensuring consistent appearance and clickability.
Email Conditional
Proprietary conditional comments used to target Microsoft Outlook with specific HTML or VML code for cross-client email rendering.
Email Ghost Table
A responsive email technique using hidden tables to conditionally show or hide content for mobile and desktop layouts across all email clients.
Email Gmail CSS
The subset of CSS supported by Gmail, which strips most `<style>` block rules and requires inline CSS for reliable rendering across web and mobile.
Email Graceful Degradation
An email design strategy that starts with a feature-rich layout and systematically reduces complexity for clients with limited rendering capabilities.
Frequently Asked Questions
Outlook 2007–2021 uses Word's HTML rendering engine instead of Internet Explorer's Trident engine. Word's engine lacks support for CSS `background-image` on divs, tables, and table cells. VML provides the only reliable workaround for Outlook background images.
VML (Vector Markup Language) uses `v:rect` and `v:fill` XML elements to render a background image in Outlook. The VML code is hidden from non-Outlook clients using `2026 Email Calculator. All rights reserved.