transition
CSS property · 5 supported, 7 partial, 9 unsupported across 21 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 |
| Outlook for Mac | desktop | WebKit | Unsupported |
| Apple Mail | desktop | WebKit | Supported |
| Apple Mail iOS | mobile | WebKit | Supported |
| Yahoo Mail | webmail | Yahoo | Partial |
| Yahoo Mail Android | mobile | Yahoo | Partial |
| Yahoo Mail iOS | mobile | Yahoo | Partial |
| Samsung Mail | mobile | Samsung | Partial |
| Thunderbird | desktop | Gecko | Supported |
| HEY Mail | webmail | WebKit | Partial |
| Proton Mail | webmail | Proton | Supported |
| AOL Mail | webmail | AOL | Partial |
| Fastmail | webmail | Fastmail | Supported |
| Superhuman | desktop | Blink | Partial |
Client-by-client behaviour for transition
Fully supports transition (5): Apple Mail, Apple Mail iOS, Thunderbird, Proton Mail, Fastmail.
Partial support (7): Yahoo Mail, Yahoo Mail Android, Yahoo Mail iOS, Samsung Mail, HEY Mail, AOL 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 (9): Gmail, Gmail Android, Gmail iOS, Outlook 365, Outlook (New), Outlook Classic, Outlook iOS, Outlook Android, Outlook for Mac. 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
Outlook for Mac
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
Yahoo Mail Android
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
Yahoo Mail iOS
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
AOL 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, 5 of 15 tracked clients support it fully, 7 only partially, and 9 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 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.