Firefox wraps text inside spans and divs neatly without expanding them. I'm having trouble achieving this with IE. IE only wraps words at word separators like spaces or hyphens. If the text does not contain spaces or hyphens the span expands in width. How do I get it to wrap arbitrarily and maintain the width of the span (or div) ?

link|improve this question

45% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Try the word-wrap property:

word-wrap: break-word;
-ms-word-wrap: break-word;
link|improve this answer
feedback

IE requires a special property.

If JQuery is an option for you try the jQuery word wrap plugin

link|improve this answer
feedback

Try something like this:

<P STYLE="word-wrap: break-word; -ms-word-wrap: break-word; width:100%;left:0">
LongWordLongWord...LongWordLongWord</P>

Taken from -ms-word-wrap Attribute Edited a bit.

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.