Languages
[Edit]
EN

Break long text and move it to the next line in html

8 points
Created by:
Kenya-Spears
800

Problem

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:

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<body>
	<div style="width: 150px; border: 1px solid black;">
		<div>Initially only implemented client-side in web browsers,
			JavaScriptJavaScriptJavaScriptJavaScriptJavaScript engines</div>
	</div>
</body>
</html>

This text:

JavaScriptJavaScriptJavaScriptJavaScriptJavaScript

will go outside of the 150px box.
How to fix it?

Solution

overflow-wrap: break-word;

Just add this 1 line and it fixes the problem.
Yours fixed example:

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<body>
	<div style="width: 150px; border: 1px solid black; overflow-wrap: break-word;">
		<div>Initially only implemented client-side in web browsers,
			JavaScriptJavaScriptJavaScriptJavaScriptJavaScript engines</div>
	</div>
</body>
</html>

References

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

HTML

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join