Advertisement
putuebo

Wrapping Long URLs and Text Content with CSS

Nov 25th, 2013
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.36 KB | None | 0 0
  1. a {
  2.     white-space: pre;           /* CSS 2.0 */
  3.     white-space: pre-wrap;      /* CSS 2.1 */
  4.     white-space: pre-line;      /* CSS 3.0 */
  5.     white-space: -pre-wrap;     /* Opera 4-6 */
  6.     white-space: -o-pre-wrap;   /* Opera 7 */
  7.     white-space: -moz-pre-wrap; /* Mozilla */
  8.     white-space: -hp-pre-wrap;  /* HP Printers */
  9.     word-wrap: break-word;      /* IE 5+ */
  10.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement