2

I am designing a chat ui.

In my chat bubble when i enter a lot of characters it goes outside the bubble.

Are there any css techniques to break a line after certain width ?

IamNOOB
  • 111
  • 1
  • 3
  • 11

2 Answers2

4

Try this :

.your-bubble {
    width: 250px; // width can be depend on you
    white-space: normal;
    word-break: break-word;
}

May this will help your problem

Sherly Febrianti
  • 1,097
  • 15
  • 33
1

p{
  width: 100px;
  border: 1px solid #111;
  word-break: break-word;
}
<p>some random text jfkdfjkd jkfdkf</p>
Ryad Boubaker
  • 1,491
  • 11
  • 16
Rahul
  • 4,294
  • 1
  • 10
  • 12