How can text like "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" which exceeds the width of a div(say 200px), be wrapped?

I am open to any kind of solution such as CSS, jQuery, et cetera.

link|improve this question

36% accept rate
feedback

6 Answers

Try this:

div {
    width: 200px;
    word-wrap: break-word;
}
link|improve this answer
Am I mistaken or word-wrap is a CSS3 propriety? – Gab Royer Jul 18 '09 at 16:06
@Gab Royer: You are right. – Alan Haggai Alavi Jul 18 '09 at 16:28
7  
It's CSS3, but it works in almost all mainstream browsers, including IE5.5 -> 9 - caniuse.com/#search=word-wrap – Jon Hadley Jan 27 '11 at 9:10
2  
When word-wrap: break-word; doesn't work try word-break: break-all; /*this one is a killer*/ – redsonic Aug 27 '11 at 23:09
feedback

You can use a soft hyphen like so:

aaaaaaaaaaaaaaa­aaaaaaaaaaaaaaa

This will appear as
aaaaaaaaaaaaaaa-
aaaaaaaaaaaaaaa
if the containing box isn't big enough, or as
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
if it is.

link|improve this answer
1  
But how will you know where to put the ­? – vrinek Aug 3 '11 at 11:00
You put it into long words where they may be split. You can even get that information automatically from a suitable dictionary. – Kim Stebel Aug 3 '11 at 11:03
1  
But how about gibberish like the one in the example? Is it ok to turn aaaaaa...aaaaa into a­a­a­a­a­a­a...a­a­a­a? – vrinek Aug 3 '11 at 11:06
Exactly what I was looking for. I like that it's too shy to do anything until it has to ;-) – w00t Apr 7 at 9:11
feedback
div {
// set a width
word-wrap: break-word

}

The 'word-wrap' solution only works in IE and browsers supporting CSS3.

The best cross browser solution is to use your server side language (php or whatever) to locate long strings and place inside them in regular intervals the html entity #8203; This entity breaks the long words nicely, and works on all browsers.

link|improve this answer
1  
Also, take a look at quirksmode.org/oddsandends/wbr.html – nikc.org Apr 20 '10 at 6:27
1  
"place inside them in regular intervals the html entity #8203" but then when you try to copy the text and paste it somewhere, you'll have a random Unicode character in the middle – user102008 Sep 30 '11 at 22:51
feedback
 text-overflow: ellipsis;
 overflow: hidden;
 white-space: nowrap;
link|improve this answer
I like text-overflow:ellipsis as much as the next guy, but it is not a correct answer to this question. He's looking to word wrap, not truncate the overflow. – Spudley yesterday
feedback

Use Word-wrap:break-word attribute along with required width

mainly put the width in px not in %

width: 200px; word-wrap: break-word;

link|improve this answer
5  
This is identical to the answer above. Why bother? – trgraglia Mar 15 '11 at 10:52
feedback

A server side solution that works for me is: $message = wordwrap($message, 50, "<br>", true); where $message is a string variable containing the word/chars to be broken up. 50 is the max length of any given segment, and "<br>" is the text you want to be inserted every (50) chars.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.