Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know IE has a word-wrap style but I'd like to know if there is a cross browser method of doing so to text in a div.

Preferably CSS but javascript snippets would work ok too

edit: yeah referring to long strings, cheers folks!

share|improve this question
4  
Word wrapping happens by default. Do you mean wrapping when there aren't separate words? – Quentin Oct 28 '09 at 16:03

5 Answers

up vote 85 down vote accepted

Reading the original comment, rutherford is looking for a cross-browser way to wrap unbroken text (inferred by his use of word-wrap for IE, designed to break unbroken strings).

/* Source: http://snipplr.com/view/10979/css-cross-browser-word-wrap */
.wordwrap { 
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}

I've used this class for a bit now, and works like a charm. (note: I've only tested in FireFox and IE)

share|improve this answer
1  
Good observation and solution. – Kev Oct 28 '09 at 17:53
2  
Only answer with votes - weird. – think123 Jul 14 '12 at 7:55
Old post, but it doesn't appear to render spaces when IE is in quirks mode. – Jeremy Nov 21 '12 at 7:10
not working..... – vikas devde Apr 8 at 18:02
white-space: pre-wrap

quirksmode.org/css/whitespace.html

share|improve this answer
white-space: pre-wrap;      /* CSS3 */       
white-space: -moz-pre-wrap; /* Firefox */        
white-space: -pre-wrap;     /* Opera <7 */       
white-space: -o-pre-wrap;   /* Opera 7 */        
word-wrap: break-word; 

With this I also applied padding-right: 5px; working fine now.

share|improve this answer

As david mentions, DIVs do wrap words by default.

If you are referring to really long strings of text without spaces, what I do is process the string server-side and insert empty spans:

thisIsAreallyLongStringThatIWantTo<span></span>BreakToFitInsideAGivenSpace

It's not exact as there are issues with font-sizing and such. The span option works if the container is variable in size. If it's a fixed width container, you could just go ahead and insert line breaks.

share|improve this answer

You can try specifying a width for the div, whether it be in pixels, percentages or ems, and at that point the div will remain that width and the text will wrap automatically then within the div.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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