display:grid
CSS property · 7 supported, 0 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 | Supported |
| 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 | Unsupported |
| Samsung Mail | mobile | Samsung | Supported |
| Thunderbird | desktop | Gecko | Supported |
| HEY Mail | webmail | WebKit | Supported |
| Superhuman | desktop | Blink | Supported |
Client-by-client behaviour for display:grid
Fully supports display:grid (7): Outlook 365, Apple Mail, Apple Mail iOS, Samsung Mail, Thunderbird, HEY Mail, Superhuman.
No support (8): Gmail, Gmail Android, Gmail iOS, Outlook (New), Outlook Classic, Outlook iOS, Outlook Android, Yahoo Mail. Plan fallbacks for these clients before relying on display:grid in production sends.
Fixes & Workarounds
Gmail
UnsupportedReplace CSS Grid with table layout for email compatibility.
Before
<div style="display: grid;
grid-template-columns: 1fr 1fr; gap: 16px;">
<div>Item 1</div>
<div>Item 2</div>
</div>After
<table role="presentation" width="100%" cellpadding="0"
cellspacing="0" border="0">
<tr>
<td width="50%" style="padding: 8px;" valign="top">
Item 1
</td>
<td width="50%" style="padding: 8px;" valign="top">
Item 2
</td>
</tr>
</table>Replace CSS Grid with table layout for email compatibility
Gmail Android
UnsupportedReplace CSS Grid with table layout for email compatibility.
Before
<div style="display: grid;
grid-template-columns: 1fr 1fr; gap: 16px;">
<div>Item 1</div>
<div>Item 2</div>
</div>After
<table role="presentation" width="100%" cellpadding="0"
cellspacing="0" border="0">
<tr>
<td width="50%" style="padding: 8px;" valign="top">
Item 1
</td>
<td width="50%" style="padding: 8px;" valign="top">
Item 2
</td>
</tr>
</table>Replace CSS Grid with table layout for email compatibility
Gmail iOS
UnsupportedReplace CSS Grid with table layout for email compatibility.
Before
<div style="display: grid;
grid-template-columns: 1fr 1fr; gap: 16px;">
<div>Item 1</div>
<div>Item 2</div>
</div>After
<table role="presentation" width="100%" cellpadding="0"
cellspacing="0" border="0">
<tr>
<td width="50%" style="padding: 8px;" valign="top">
Item 1
</td>
<td width="50%" style="padding: 8px;" valign="top">
Item 2
</td>
</tr>
</table>Replace CSS Grid with table layout for email compatibility
Outlook (New)
UnsupportedReplace CSS Grid with table layout for email compatibility.
Before
<div style="display: grid;
grid-template-columns: 1fr 1fr; gap: 16px;">
<div>Item 1</div>
<div>Item 2</div>
</div>After
<table role="presentation" width="100%" cellpadding="0"
cellspacing="0" border="0">
<tr>
<td width="50%" style="padding: 8px;" valign="top">
Item 1
</td>
<td width="50%" style="padding: 8px;" valign="top">
Item 2
</td>
</tr>
</table>Replace CSS Grid with table layout for email compatibility
Outlook Classic
UnsupportedReplace CSS Grid with table layout for email compatibility.
Before
<div style="display: grid;
grid-template-columns: 1fr 1fr; gap: 16px;">
<div>Item 1</div>
<div>Item 2</div>
</div>After
<table role="presentation" width="100%" cellpadding="0"
cellspacing="0" border="0">
<tr>
<td width="50%" style="padding: 8px;" valign="top">
Item 1
</td>
<td width="50%" style="padding: 8px;" valign="top">
Item 2
</td>
</tr>
</table>Replace CSS Grid with table layout for email compatibility
Outlook iOS
UnsupportedReplace CSS Grid with table layout for email compatibility.
Before
<div style="display: grid;
grid-template-columns: 1fr 1fr; gap: 16px;">
<div>Item 1</div>
<div>Item 2</div>
</div>After
<table role="presentation" width="100%" cellpadding="0"
cellspacing="0" border="0">
<tr>
<td width="50%" style="padding: 8px;" valign="top">
Item 1
</td>
<td width="50%" style="padding: 8px;" valign="top">
Item 2
</td>
</tr>
</table>Replace CSS Grid with table layout for email compatibility
Outlook Android
UnsupportedReplace CSS Grid with table layout for email compatibility.
Before
<div style="display: grid;
grid-template-columns: 1fr 1fr; gap: 16px;">
<div>Item 1</div>
<div>Item 2</div>
</div>After
<table role="presentation" width="100%" cellpadding="0"
cellspacing="0" border="0">
<tr>
<td width="50%" style="padding: 8px;" valign="top">
Item 1
</td>
<td width="50%" style="padding: 8px;" valign="top">
Item 2
</td>
</tr>
</table>Replace CSS Grid with table layout for email compatibility
Yahoo Mail
UnsupportedReplace CSS Grid with table layout for email compatibility.
Before
<div style="display: grid;
grid-template-columns: 1fr 1fr; gap: 16px;">
<div>Item 1</div>
<div>Item 2</div>
</div>After
<table role="presentation" width="100%" cellpadding="0"
cellspacing="0" border="0">
<tr>
<td width="50%" style="padding: 8px;" valign="top">
Item 1
</td>
<td width="50%" style="padding: 8px;" valign="top">
Item 2
</td>
</tr>
</table>Replace CSS Grid with table layout for email compatibility
Production guidance for display:grid
display:grid is a CSS property. Across the email client matrix, 7 of 15 tracked clients support it fully, 0 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 display:grid 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.