View Single Post
 
Old 08-04-2021, 06:05 AM
Elena123 Elena123 is offline Mac OS X Office 2019
Novice
 
Join Date: Aug 2021
Posts: 1
Elena123 is on a distinguished road
Default CSS to wrap text without spaces in email template

Hi I need to create email template. I have a very long url string that need to wrap automatically in the email. I use css inline tags

white-space: -webkit-pre-wrap; /* Chrome & Safari */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
white-space: pre-wrap; /* CSS3 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
word-break: break-all;

This css works in HTML page, in gmail, but not in Outlook.
In Outlook i get email with all string in one line, not wrapped.
Reply With Quote