Skip to main content
CSS Properties

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

ClientCategoryEngineSupport
GmailwebmailGmail WebSupported
Gmail AndroidmobileGmail MobileSupported
Gmail iOSmobileGmail MobileSupported
Outlook 365webmailOutlook WebSupported
Outlook (New)desktopOutlook WebUnsupported
Outlook ClassicdesktopMicrosoft WordUnsupported
Outlook iOSmobileOutlook MobileSupported
Outlook AndroidmobileOutlook MobileSupported
Apple MaildesktopWebKitSupported
Apple Mail iOSmobileWebKitSupported
Yahoo MailwebmailYahooSupported
Samsung MailmobileSamsungSupported
ThunderbirddesktopGeckoSupported
HEY MailwebmailWebKitSupported
SuperhumandesktopBlinkSupported

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)

Unsupported

Use 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

Unsupported

Use 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 Free

Support data last updated Apr 27, 2026 · synced from caniemail.com via @emailens/engine.