EN
Break long text and move it to the next line in html
8 points
I have long text word in div and I'd like to break it into couple
of lines instead of going out of the border.
Screenshot with this problem:
Code with this problem:
xxxxxxxxxx
1
2
<html>
3
<body>
4
<div style="width: 150px; border: 1px solid black;">
5
<div>Initially only implemented client-side in web browsers,
6
JavaScriptJavaScriptJavaScriptJavaScriptJavaScript engines</div>
7
</div>
8
</body>
9
</html>
This text:
xxxxxxxxxx
1
JavaScriptJavaScriptJavaScriptJavaScriptJavaScript
will go outside of the 150px box.
How to fix it?
xxxxxxxxxx
1
overflow-wrap: break-word;
Just add this 1 line and it fixes the problem.
Yours fixed example:
xxxxxxxxxx
1
2
<html>
3
<body>
4
<div style="width: 150px; border: 1px solid black; overflow-wrap: break-word;">
5
<div>Initially only implemented client-side in web browsers,
6
JavaScriptJavaScriptJavaScriptJavaScriptJavaScript engines</div>
7
</div>
8
</body>
9
</html>