opacity
CSS property · 13 supported, 0 partial, 2 unsupported across 15 clients
opacity controls the transparency of an entire element including its children. It is widely supported by modern email clients and ignored by Outlook on Windows, which renders the element at full opacity. Because opacity affects descendants, it can produce unexpected results when a parent's transparency stacks with a child's.
Client Support
| Client | Category | Engine | Support |
|---|---|---|---|
| Gmail | webmail | Gmail Web | Supported |
| Gmail Android | mobile | Gmail Mobile | Supported |
| Gmail iOS | mobile | Gmail Mobile | Supported |
| Outlook 365 | webmail | Outlook Web | Supported |
| Outlook (New) | desktop | Outlook Web | Unsupported |
| Outlook Classic | desktop | Microsoft Word | Unsupported |
| Outlook iOS | mobile | Outlook Mobile | Supported |
| Outlook Android | mobile | Outlook Mobile | Supported |
| Apple Mail | desktop | WebKit | Supported |
| Apple Mail iOS | mobile | WebKit | Supported |
| Yahoo Mail | webmail | Yahoo | Supported |
| Samsung Mail | mobile | Samsung | Supported |
| Thunderbird | desktop | Gecko | Supported |
| HEY Mail | webmail | WebKit | Supported |
| Superhuman | desktop | Blink | Supported |
Client-by-client behaviour for opacity
Fully supports opacity (13): Gmail, Gmail Android, Gmail iOS, Outlook 365, Outlook iOS, Outlook Android, Apple Mail, Apple Mail iOS, Yahoo Mail, Samsung Mail, Thunderbird, HEY Mail, Superhuman.
No support (2): Outlook (New), Outlook Classic. Plan fallbacks for these clients before relying on opacity in production sends.
When to use opacity in email
- Subtly fading footer disclosure copy without changing color.
- Creating watermark-like effects on hero imagery overlays in modern clients.
- De-emphasizing inactive items in a list of options or links.
Rendering behaviour and edge cases
- Outlook on Windows ignores opacity entirely — design assuming the element will appear at 100% opacity.
- Stacking opacity on parent + child compounds visually, which is rarely the intended effect.
- Use rgba() for color opacity instead of opacity when targeting only a single property's transparency.
Recommended fallback strategy
Use opacity only for progressive enhancement. For solid-feeling color transparency, prefer rgba() values applied directly to background-color or color properties so Outlook still receives a sensible solid color.
Fixes & Workarounds
Outlook (New)
UnsupportedUse solid colors instead of opacity.
Before
.overlay {
background-color: #000;
opacity: 0.5;
}After
.overlay {
/* Use a semi-transparent color instead of opacity */
background-color: #808080;
/* Or for modern clients: rgba(0, 0, 0, 0.5) */
}Replace opacity with solid color equivalents
Outlook Classic
UnsupportedUse solid colors instead of opacity.
Before
.overlay {
background-color: #000;
opacity: 0.5;
}After
.overlay {
/* Use a semi-transparent color instead of opacity */
background-color: #808080;
/* Or for modern clients: rgba(0, 0, 0, 0.5) */
}Replace opacity with solid color equivalents
Related Features
Test your email across all 15 clients
Preview rendering, catch CSS issues, and get actionable fixes — free.
Try Emailens FreeSupport data last updated Apr 27, 2026 · synced from caniemail.com via @emailens/engine.