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 ?
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
p{
width: 100px;
border: 1px solid #111;
word-break: break-word;
}
<p>some random text jfkdfjkd jkfdkf</p>
?](http://stackoverflow.com/questions/2703601/how-to-give-line-break-from-css-without-using-br) – theoretisch Nov 25 '16 at 07:32