opacity
CSS property · 18 supported, 0 partial, 3 unsupported across 21 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 |
| Outlook for Mac | desktop | WebKit | Supported |
| Apple Mail | desktop | WebKit | Supported |
| Apple Mail iOS | mobile | WebKit | Supported |
| Yahoo Mail | webmail | Yahoo | Supported |
| Yahoo Mail Android | mobile | Yahoo | Supported |
| Yahoo Mail iOS | mobile | Yahoo | Supported |
| Samsung Mail | mobile | Samsung | Supported |
| Thunderbird | desktop | Gecko | Supported |
| HEY Mail | webmail | WebKit | Supported |
| Proton Mail | webmail | Proton | Supported |
| AOL Mail | webmail | AOL | Unsupported |
| Fastmail | webmail | Fastmail | Supported |
| Superhuman | desktop | Blink | Supported |
Client-by-client behaviour for opacity
Fully supports opacity (18): Gmail, Gmail Android, Gmail iOS, Outlook 365, Outlook iOS, Outlook Android, Outlook for Mac, Apple Mail, Apple Mail iOS, Yahoo Mail, Yahoo Mail Android, Yahoo Mail iOS, Samsung Mail, Thunderbird, HEY Mail, Proton Mail, Fastmail, Superhuman.
No support (3): Outlook (New), Outlook Classic, AOL Mail. 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
AOL Mail
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 21 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.