SOLVED

Break-word/stop hyphenating in Outlook 2016

Go to solution
derekw
Level 1

Break-word/stop hyphenating in Outlook 2016

Hi all,

 

Looking for some help to eliminate wrapping and hyphenating words inside td's when rendering in Outlook 2016. It is not an issue on Gmail, Outlook Web, or Outlook Mobile; it's just the Outlook 2016 desktop app.

 

Outlook.PNG

 

I'd rather the broken word be placed unbroken on the next line rather than hyphenated, which is a little difficult to read.

 

Per some search results I found, I've tried adding: word-break:break-word, -ms-word-break:break-word, and -mso-word-break:break-word" to all of td, p, and body to no avail. I'm also having trouble finding an property that works in Outlook 2016 per the Campaign Monitor tool.

 

Thanks in advance!

 

My code:

[removed]

1 ACCEPTED SOLUTION

Accepted Solutions
Dave_Roberts
Level 10

Re: Break-word/stop hyphenating in Outlook 2016

Hey @derekw you might check out "Can I Email" https://www.caniemail.com/ as a replacement to the Campaign Monitor list you're using here. The Campaign Monitor stuff has been notoriously behind and it looks like the last update was in 2017 so it's probably not accurate anyway.

 

Dave_Roberts_0-1616508163389.png

It looks like the Outlook conditional code that you're using has the "w:AutoHyphenation" property set, this might have something to do with it? Maybe try removing the highlighted piece in the code and see if that stops the auto hypenating?

 

The other setting I'll tinker around with for stuff like this is "white-space", you might also check out "overflow-wrap" as they're all kinda in a similar vein.

 

View solution in original post

2 REPLIES 2
Dave_Roberts
Level 10

Re: Break-word/stop hyphenating in Outlook 2016

Hey @derekw you might check out "Can I Email" https://www.caniemail.com/ as a replacement to the Campaign Monitor list you're using here. The Campaign Monitor stuff has been notoriously behind and it looks like the last update was in 2017 so it's probably not accurate anyway.

 

Dave_Roberts_0-1616508163389.png

It looks like the Outlook conditional code that you're using has the "w:AutoHyphenation" property set, this might have something to do with it? Maybe try removing the highlighted piece in the code and see if that stops the auto hypenating?

 

The other setting I'll tinker around with for stuff like this is "white-space", you might also check out "overflow-wrap" as they're all kinda in a similar vein.

 

derekw
Level 1

Re: Break-word/stop hyphenating in Outlook 2016

Worked like a charm - thank you!