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
  • 101
  • 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,052
  • 14
  • 30
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,174
  • 1
  • 8
  • 10