transition
CSS property · 3 supported, 4 partial, 8 unsupported across 15 clients
Client Support
| Client | Category | Engine | Support |
|---|---|---|---|
| Gmail | webmail | Gmail Web | Unsupported |
| Gmail Android | mobile | Gmail Mobile | Unsupported |
| Gmail iOS | mobile | Gmail Mobile | Unsupported |
| Outlook 365 | webmail | Outlook Web | Unsupported |
| Outlook (New) | desktop | Outlook Web | Unsupported |
| Outlook Classic | desktop | Microsoft Word | Unsupported |
| Outlook iOS | mobile | Outlook Mobile | Unsupported |
| Outlook Android | mobile | Outlook Mobile | Unsupported |
| Apple Mail | desktop | WebKit | Supported |
| Apple Mail iOS | mobile | WebKit | Supported |
| Yahoo Mail | webmail | Yahoo | Partial |
| Samsung Mail | mobile | Samsung | Partial |
| Thunderbird | desktop | Gecko | Supported |
| HEY Mail | webmail | WebKit | Partial |
| Superhuman | desktop | Blink | Partial |
Client-by-client behaviour for transition
Fully supports transition (3): Apple Mail, Apple Mail iOS, Thunderbird.
Partial support (4): Yahoo Mail, Samsung Mail, HEY Mail, Superhuman. Expect rendering quirks unique to each engine — partial support typically means a subset of values, an ignored shorthand, or sanitizer-specific rewrites.
No support (8): Gmail, Gmail Android, Gmail iOS, Outlook 365, Outlook (New), Outlook Classic, Outlook iOS, Outlook Android. Plan fallbacks for these clients before relying on transition in production sends.
Fixes & Workarounds
Gmail
UnsupportedCSS transitions are not supported in email.
Before
.button {
background-color: #6d28d9;
transition: background-color 0.2s;
}
.button:hover {
background-color: #5b21b6;
}After
.button {
/* Use the most visually appealing state as default.
:hover is only supported in a few clients. */
background-color: #6d28d9;
color: #ffffff;
text-decoration: none;
font-weight: bold;
}Transitions don't work in email — style the default state well
Gmail Android
UnsupportedCSS transitions are not supported in email.
Before
.button {
background-color: #6d28d9;
transition: background-color 0.2s;
}
.button:hover {
background-color: #5b21b6;
}After
.button {
/* Use the most visually appealing state as default.
:hover is only supported in a few clients. */
background-color: #6d28d9;
color: #ffffff;
text-decoration: none;
font-weight: bold;
}Transitions don't work in email — style the default state well
Gmail iOS
UnsupportedCSS transitions are not supported in email.
Before
.button {
background-color: #6d28d9;
transition: background-color 0.2s;
}
.button:hover {
background-color: #5b21b6;
}After
.button {
/* Use the most visually appealing state as default.
:hover is only supported in a few clients. */
background-color: #6d28d9;
color: #ffffff;
text-decoration: none;
font-weight: bold;
}Transitions don't work in email — style the default state well
Outlook 365
UnsupportedCSS transitions are not supported in email.
Before
.button {
background-color: #6d28d9;
transition: background-color 0.2s;
}
.button:hover {
background-color: #5b21b6;
}After
.button {
/* Use the most visually appealing state as default.
:hover is only supported in a few clients. */
background-color: #6d28d9;
color: #ffffff;
text-decoration: none;
font-weight: bold;
}Transitions don't work in email — style the default state well
Outlook (New)
UnsupportedCSS transitions are not supported in email.
Before
.button {
background-color: #6d28d9;
transition: background-color 0.2s;
}
.button:hover {
background-color: #5b21b6;
}After
.button {
/* Use the most visually appealing state as default.
:hover is only supported in a few clients. */
background-color: #6d28d9;
color: #ffffff;
text-decoration: none;
font-weight: bold;
}Transitions don't work in email — style the default state well
Outlook Classic
UnsupportedCSS transitions are not supported in email.
Before
.button {
background-color: #6d28d9;
transition: background-color 0.2s;
}
.button:hover {
background-color: #5b21b6;
}After
.button {
/* Use the most visually appealing state as default.
:hover is only supported in a few clients. */
background-color: #6d28d9;
color: #ffffff;
text-decoration: none;
font-weight: bold;
}Transitions don't work in email — style the default state well
Outlook iOS
UnsupportedCSS transitions are not supported in email.
Before
.button {
background-color: #6d28d9;
transition: background-color 0.2s;
}
.button:hover {
background-color: #5b21b6;
}After
.button {
/* Use the most visually appealing state as default.
:hover is only supported in a few clients. */
background-color: #6d28d9;
color: #ffffff;
text-decoration: none;
font-weight: bold;
}Transitions don't work in email — style the default state well
Outlook Android
UnsupportedCSS transitions are not supported in email.
Before
.button {
background-color: #6d28d9;
transition: background-color 0.2s;
}
.button:hover {
background-color: #5b21b6;
}After
.button {
/* Use the most visually appealing state as default.
:hover is only supported in a few clients. */
background-color: #6d28d9;
color: #ffffff;
text-decoration: none;
font-weight: bold;
}Transitions don't work in email — style the default state well
Yahoo Mail
PartialCSS transitions are not supported in email.
Before
.button {
background-color: #6d28d9;
transition: background-color 0.2s;
}
.button:hover {
background-color: #5b21b6;
}After
.button {
/* Use the most visually appealing state as default.
:hover is only supported in a few clients. */
background-color: #6d28d9;
color: #ffffff;
text-decoration: none;
font-weight: bold;
}Transitions don't work in email — style the default state well
Samsung Mail
PartialCSS transitions are not supported in email.
Before
.button {
background-color: #6d28d9;
transition: background-color 0.2s;
}
.button:hover {
background-color: #5b21b6;
}After
.button {
/* Use the most visually appealing state as default.
:hover is only supported in a few clients. */
background-color: #6d28d9;
color: #ffffff;
text-decoration: none;
font-weight: bold;
}Transitions don't work in email — style the default state well
HEY Mail
PartialCSS transitions are not supported in email.
Before
.button {
background-color: #6d28d9;
transition: background-color 0.2s;
}
.button:hover {
background-color: #5b21b6;
}After
.button {
/* Use the most visually appealing state as default.
:hover is only supported in a few clients. */
background-color: #6d28d9;
color: #ffffff;
text-decoration: none;
font-weight: bold;
}Transitions don't work in email — style the default state well
Superhuman
PartialCSS transitions are not supported in email.
Before
.button {
background-color: #6d28d9;
transition: background-color 0.2s;
}
.button:hover {
background-color: #5b21b6;
}After
.button {
/* Use the most visually appealing state as default.
:hover is only supported in a few clients. */
background-color: #6d28d9;
color: #ffffff;
text-decoration: none;
font-weight: bold;
}Transitions don't work in email — style the default state well
Production guidance for transition
transition is a CSS property. Across the email client matrix, 3 of 15 tracked clients support it fully, 4 only partially, and 8 not at all. The clients most likely to require a workaround for this feature are Gmail, Gmail Android, Gmail iOS. Each of them needs a tailored fallback — see the per-client examples above for the specific code fix Emailens recommends.
When in doubt, ship a baseline that renders without transition and treat it as progressive enhancement on clients where support is verified. Emailens automatically detects cross-client divergence on this feature when you preview an email, so you can see exactly which template paths break before a campaign goes out.
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.