box-sizing
CSS property · 12 supported, 0 partial, 3 unsupported across 15 clients
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 |
| 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 box-sizing
Fully supports box-sizing (12): Gmail, Gmail Android, Gmail iOS, Outlook 365, Outlook iOS, Outlook Android, Apple Mail, Apple Mail iOS, Samsung Mail, Thunderbird, HEY Mail, Superhuman.
No support (3): Outlook (New), Outlook Classic, Yahoo Mail. Plan fallbacks for these clients before relying on box-sizing in production sends.
Fixes & Workarounds
Outlook (New)
UnsupportedAccount for padding in your width calculations (use padding on a nested element).
Before
<div style="width: 300px; padding: 20px;
box-sizing: border-box;">
Content — total width stays 300px
</div>After
<!-- Set width to content-width (300 - 40 = 260px) -->
<div style="width: 300px;">
<div style="padding: 20px;">
Content — padding on inner element
</div>
</div>Account for padding in width manually (no box-sizing)
Outlook Classic
UnsupportedAccount for padding in your width calculations (use padding on a nested element).
Before
<div style="width: 300px; padding: 20px;
box-sizing: border-box;">
Content — total width stays 300px
</div>After
<!-- Set width to content-width (300 - 40 = 260px) -->
<div style="width: 300px;">
<div style="padding: 20px;">
Content — padding on inner element
</div>
</div>Account for padding in width manually (no box-sizing)
Yahoo Mail
UnsupportedAccount for padding in your width calculations (use padding on a nested element).
Before
<div style="width: 300px; padding: 20px;
box-sizing: border-box;">
Content — total width stays 300px
</div>After
<!-- Set width to content-width (300 - 40 = 260px) -->
<div style="width: 300px;">
<div style="padding: 20px;">
Content — padding on inner element
</div>
</div>Account for padding in width manually (no box-sizing)
Production guidance for box-sizing
box-sizing is a CSS property. Across the email client matrix, 12 of 15 tracked clients support it fully, 0 only partially, and 3 not at all. The clients most likely to require a workaround for this feature are Outlook (New), Outlook Classic, Yahoo Mail. 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 box-sizing 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.