CSS Code for Wrapping Long URLs and Text

CSS Code for Wrapping Long URLs and Text

Ran into a problem last night where a long email was messing up a design in smaller screen resolutions.

Perfect fix down below:

pre {
white-space: pre; /* CSS 2.0 */
white-space: pre-wrap; /* CSS 2.1 */
white-space: pre-line; /* CSS 3.0 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
white-space: -moz-pre-wrap; /* Mozilla */
white-space: -hp-pre-wrap; /* HP Printers */
word-wrap: break-word; /* IE 5+ */ }

Thanks to perishable press for this one, read more about it here .


Posted on October 04, 2011