box-sizing in Yahoo Mail
UnsupportedYahoo · webmail
Fix & Workaround
Account 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)
Other Clients
| Client | Support |
|---|---|
| Gmail | Supported |
| Gmail Android | Supported |
| Gmail iOS | Supported |
| Outlook 365 | Supported |
| Outlook (New) | Unsupported |
| Outlook Classic | Unsupported |
| Outlook iOS | Supported |
| Outlook Android | Supported |
| Apple Mail | Supported |
| Apple Mail iOS | Supported |
| Samsung Mail | Supported |
| Thunderbird | Supported |
| HEY Mail | Supported |
| Superhuman | Supported |
Related Features
Test your email across all 15 clients
Preview rendering, catch CSS issues, and get actionable fixes — free.
Try Emailens Free