Skip to main content
CSS Properties

word-break

CSS property · 4 supported, 9 partial, 2 unsupported across 15 clients

Client Support

ClientCategoryEngineSupport
GmailwebmailGmail WebSupported
Gmail AndroidmobileGmail MobilePartial
Gmail iOSmobileGmail MobilePartial
Outlook 365webmailOutlook WebPartial
Outlook (New)desktopOutlook WebSupported
Outlook ClassicdesktopMicrosoft WordUnsupported
Outlook iOSmobileOutlook MobilePartial
Outlook AndroidmobileOutlook MobilePartial
Apple MaildesktopWebKitPartial
Apple Mail iOSmobileWebKitPartial
Yahoo MailwebmailYahooUnsupported
Samsung MailmobileSamsungPartial
ThunderbirddesktopGeckoSupported
HEY MailwebmailWebKitPartial
SuperhumandesktopBlinkSupported

Client-by-client behaviour for word-break

Fully supports word-break (4): Gmail, Outlook (New), Thunderbird, Superhuman.

Partial support (9): Gmail Android, Gmail iOS, Outlook 365, Outlook iOS, Outlook Android, Apple Mail, Apple Mail iOS, Samsung Mail, HEY Mail. Expect rendering quirks unique to each engine — partial support typically means a subset of values, an ignored shorthand, or sanitizer-specific rewrites.

No support (2): Outlook Classic, Yahoo Mail. Plan fallbacks for these clients before relying on word-break in production sends.

Fixes & Workarounds

Outlook Classic

Unsupported

Outlook's Word engine ignores word-break. Place text inside a <td> with a constrained width — tables always wrap.

Before

<span style="word-break: break-all;">
  https://example.com/very/long/url?token=abc123def456
</span>

After

<!-- Table cells force text wrapping in all clients including Outlook -->
<table role="presentation" width="100%" cellpadding="0"
  cellspacing="0" border="0">
  <tr>
    <td style="word-break: break-all; overflow-wrap: break-word;
               word-wrap: break-word;">
      https://example.com/very/long/url?token=abc123def456
    </td>
  </tr>
</table>

Wrap long text in a table cell to force line breaks without word-break

Yahoo Mail

Unsupported

Wrap long text in a <table><td> to force wrapping in clients that don't support word-break.

Before

<span style="word-break: break-all;">
  https://example.com/very/long/url?token=abc123def456
</span>

After

<!-- Table cells force text wrapping in all clients including Outlook -->
<table role="presentation" width="100%" cellpadding="0"
  cellspacing="0" border="0">
  <tr>
    <td style="word-break: break-all; overflow-wrap: break-word;
               word-wrap: break-word;">
      https://example.com/very/long/url?token=abc123def456
    </td>
  </tr>
</table>

Wrap long text in a table cell to force line breaks without word-break

Gmail Android

Partial

Wrap long text in a <table><td> to force wrapping in clients that don't support word-break.

Before

<span style="word-break: break-all;">
  https://example.com/very/long/url?token=abc123def456
</span>

After

<!-- Table cells force text wrapping in all clients including Outlook -->
<table role="presentation" width="100%" cellpadding="0"
  cellspacing="0" border="0">
  <tr>
    <td style="word-break: break-all; overflow-wrap: break-word;
               word-wrap: break-word;">
      https://example.com/very/long/url?token=abc123def456
    </td>
  </tr>
</table>

Wrap long text in a table cell to force line breaks without word-break

Gmail iOS

Partial

Wrap long text in a <table><td> to force wrapping in clients that don't support word-break.

Before

<span style="word-break: break-all;">
  https://example.com/very/long/url?token=abc123def456
</span>

After

<!-- Table cells force text wrapping in all clients including Outlook -->
<table role="presentation" width="100%" cellpadding="0"
  cellspacing="0" border="0">
  <tr>
    <td style="word-break: break-all; overflow-wrap: break-word;
               word-wrap: break-word;">
      https://example.com/very/long/url?token=abc123def456
    </td>
  </tr>
</table>

Wrap long text in a table cell to force line breaks without word-break

Outlook 365

Partial

Wrap long text in a <table><td> to force wrapping in clients that don't support word-break.

Before

<span style="word-break: break-all;">
  https://example.com/very/long/url?token=abc123def456
</span>

After

<!-- Table cells force text wrapping in all clients including Outlook -->
<table role="presentation" width="100%" cellpadding="0"
  cellspacing="0" border="0">
  <tr>
    <td style="word-break: break-all; overflow-wrap: break-word;
               word-wrap: break-word;">
      https://example.com/very/long/url?token=abc123def456
    </td>
  </tr>
</table>

Wrap long text in a table cell to force line breaks without word-break

Outlook iOS

Partial

Wrap long text in a <table><td> to force wrapping in clients that don't support word-break.

Before

<span style="word-break: break-all;">
  https://example.com/very/long/url?token=abc123def456
</span>

After

<!-- Table cells force text wrapping in all clients including Outlook -->
<table role="presentation" width="100%" cellpadding="0"
  cellspacing="0" border="0">
  <tr>
    <td style="word-break: break-all; overflow-wrap: break-word;
               word-wrap: break-word;">
      https://example.com/very/long/url?token=abc123def456
    </td>
  </tr>
</table>

Wrap long text in a table cell to force line breaks without word-break

Outlook Android

Partial

Wrap long text in a <table><td> to force wrapping in clients that don't support word-break.

Before

<span style="word-break: break-all;">
  https://example.com/very/long/url?token=abc123def456
</span>

After

<!-- Table cells force text wrapping in all clients including Outlook -->
<table role="presentation" width="100%" cellpadding="0"
  cellspacing="0" border="0">
  <tr>
    <td style="word-break: break-all; overflow-wrap: break-word;
               word-wrap: break-word;">
      https://example.com/very/long/url?token=abc123def456
    </td>
  </tr>
</table>

Wrap long text in a table cell to force line breaks without word-break

Apple Mail

Partial

Wrap long text in a <table><td> to force wrapping in clients that don't support word-break.

Before

<span style="word-break: break-all;">
  https://example.com/very/long/url?token=abc123def456
</span>

After

<!-- Table cells force text wrapping in all clients including Outlook -->
<table role="presentation" width="100%" cellpadding="0"
  cellspacing="0" border="0">
  <tr>
    <td style="word-break: break-all; overflow-wrap: break-word;
               word-wrap: break-word;">
      https://example.com/very/long/url?token=abc123def456
    </td>
  </tr>
</table>

Wrap long text in a table cell to force line breaks without word-break

Apple Mail iOS

Partial

Wrap long text in a <table><td> to force wrapping in clients that don't support word-break.

Before

<span style="word-break: break-all;">
  https://example.com/very/long/url?token=abc123def456
</span>

After

<!-- Table cells force text wrapping in all clients including Outlook -->
<table role="presentation" width="100%" cellpadding="0"
  cellspacing="0" border="0">
  <tr>
    <td style="word-break: break-all; overflow-wrap: break-word;
               word-wrap: break-word;">
      https://example.com/very/long/url?token=abc123def456
    </td>
  </tr>
</table>

Wrap long text in a table cell to force line breaks without word-break

Samsung Mail

Partial

Wrap long text in a <table><td> to force wrapping in clients that don't support word-break.

Before

<span style="word-break: break-all;">
  https://example.com/very/long/url?token=abc123def456
</span>

After

<!-- Table cells force text wrapping in all clients including Outlook -->
<table role="presentation" width="100%" cellpadding="0"
  cellspacing="0" border="0">
  <tr>
    <td style="word-break: break-all; overflow-wrap: break-word;
               word-wrap: break-word;">
      https://example.com/very/long/url?token=abc123def456
    </td>
  </tr>
</table>

Wrap long text in a table cell to force line breaks without word-break

HEY Mail

Partial

Wrap long text in a <table><td> to force wrapping in clients that don't support word-break.

Before

<span style="word-break: break-all;">
  https://example.com/very/long/url?token=abc123def456
</span>

After

<!-- Table cells force text wrapping in all clients including Outlook -->
<table role="presentation" width="100%" cellpadding="0"
  cellspacing="0" border="0">
  <tr>
    <td style="word-break: break-all; overflow-wrap: break-word;
               word-wrap: break-word;">
      https://example.com/very/long/url?token=abc123def456
    </td>
  </tr>
</table>

Wrap long text in a table cell to force line breaks without word-break

Production guidance for word-break

word-break is a CSS property. Across the email client matrix, 4 of 15 tracked clients support it fully, 9 only partially, and 2 not at all. The clients most likely to require a workaround for this feature are Outlook Classic, Yahoo Mail, Gmail Android. 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 word-break 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 Free

Support data last updated Apr 27, 2026 · synced from caniemail.com via @emailens/engine.