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.
|