Skip to main content
CSS Properties

word-break

CSS property · 6 supported, 10 partial, 5 unsupported across 21 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
Outlook for MacdesktopWebKitPartial
Apple MaildesktopWebKitPartial
Apple Mail iOSmobileWebKitPartial
Yahoo MailwebmailYahooUnsupported
Yahoo Mail AndroidmobileYahooUnsupported
Yahoo Mail iOSmobileYahooUnsupported
Samsung MailmobileSamsungPartial
ThunderbirddesktopGeckoSupported
HEY MailwebmailWebKitPartial
Proton MailwebmailProtonSupported
AOL MailwebmailAOLUnsupported
FastmailwebmailFastmailSupported
SuperhumandesktopBlinkSupported

Client-by-client behaviour for word-break

Fully supports word-break (6): Gmail, Outlook (New), Thunderbird, Proton Mail, Fastmail, Superhuman.

Partial support (10): Gmail Android, Gmail iOS, Outlook 365, Outlook iOS, Outlook Android, Outlook for Mac, 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 (5): Outlook Classic, Yahoo Mail, Yahoo Mail Android, Yahoo Mail iOS, AOL 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

Yahoo Mail Android

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

Yahoo Mail iOS

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

AOL 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

Outlook for Mac

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, 6 of 15 tracked clients support it fully, 10 only partially, and 5 not at all. The clients most likely to require a workaround for this feature are Outlook Classic, Yahoo Mail, Yahoo Mail 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 21 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.