2

<span>Chat message:</span><span class="wrap">Chat message text WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW</span>

The html above makes it appear like this: enter image description here

But I want it to appear like this:

enter image description here

I've tried every wrap method I could find, white-space & word-wrap

j08691
  • 204,283
  • 31
  • 260
  • 272
noobyy
  • 123
  • 9

1 Answers1

1

You can add

yourElementId {
   word-break: break-all;
}

The word-break property specifies how words should break when reaching the end of a line.

Does this help?

AleksanderGD
  • 414
  • 5
  • 10