0

how do i make sure that on my forum when people submit posts, i do not have this problem of a HUGE unwrapped string as seen on this posting:

best practice for developing webpage for mobile phone

Community
  • 1
  • 1
Alex Gordon
  • 57,446
  • 287
  • 670
  • 1,062

2 Answers2

1
{
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
}
Robert Harvey
  • 178,213
  • 47
  • 333
  • 501
Kenneth Reitz
  • 8,559
  • 4
  • 31
  • 34
0

On StackOverflow you can do it manually like this:

Here is my link

So potentially you could write a routine that just substitute Link Here as the description, instead of the URL.

Community
  • 1
  • 1
Robert Harvey
  • 178,213
  • 47
  • 333
  • 501