This is my first post. So:
I am working on an HTML email newsletter using the same template that I have been using for some time. The template worked well until recently (a bit of code that I used below). Suddenly, Outlook 07/10 does not behave the way I realized that they behaved in the past. It seems that they do not respect the attribute of "white space" when it comes to hyphens. All other email clients behave as I expect (they respect the white space attribute).
One element in the newsletter is ISBN, which is a set of numbers separated by hyphens like "978-1-555-97610-1." ISBN is located in the span tag, which is part of the line of text inside the p tag, which, together with many other p-elements, and possibly img, is inside the table. I need ISBNs not to be hyphenated or wrapped in new lines.
I cannot use inextricable hyphens, and I studied this problem a lot in the past (I have a lot of ISBNs in my work), so I hope that I will not send something that has already been answered a billion times.
Any help is greatly appreciated!
Thanks Andrew.
CODE:
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: #000000; margin-bottom: 0px; text-align: right;"> Metropolitan Books · 384 pages · $18.00 · paperback · <span style="white-space: nowrap;">978-0-8050-9466-4</span> </p>
source share