Skip to content

Instantly share code, notes, and snippets.

@benklocek
Created June 11, 2013 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benklocek/5759467 to your computer and use it in GitHub Desktop.
Save benklocek/5759467 to your computer and use it in GitHub Desktop.
Force wrap long lines CSS
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+ */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment