Skip to content

Instantly share code, notes, and snippets.

@benjamincharity
Last active December 20, 2015 14:29
Show Gist options
  • Select an option

  • Save benjamincharity/6146680 to your computer and use it in GitHub Desktop.

Select an option

Save benjamincharity/6146680 to your computer and use it in GitHub Desktop.
Force long words/urls/etc to break.http://perishablepress.com/wrapping-content/
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+ */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment