Green Cat
Green Cat

Reputation: 133

How to prevent long text from flowing out of a container

How can I use CSS to wrap long words such as wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww

Instead of them flowing out of a div

Upvotes: 3

Views: 895

Answers (2)

sascha
sascha

Reputation: 4690

Try white-space: pre-line;, it should break long words / strings.

Upvotes: 1

PeeHaa
PeeHaa

Reputation: 72642

Add the following CSS rule:

word-wrap: break-word;

Upvotes: 6

Related Questions