Can anyone please tell me why word-wrap: break-word will not work in IE8?

I have this working in other browsers but IE8 refuses to listen despite reading this post on their site?

http://msdn.microsoft.com/en-us/library/ms531186(VS.85).aspx

Thanks

link|improve this question

53% accept rate
It says, right at the top of the page you linked to 'CSS { -ms-word-wrap : sWrap } ' Why are you expecting the unprefixed version to work? – robertc Oct 22 '10 at 13:30
@robertc: I think the non-prefixed versions generally still work in IE 8? If they didn’t, a bunch of sites would have broken in IE 8. – Paul D. Waite Oct 22 '10 at 13:37
@PaulDWaite I thought this was one of those things that was unprefixed in the beta and ended up prefixed in the release? – robertc Oct 22 '10 at 13:45
1  
I tried the prefixed and none prefixed version. And in their examples, it's actually not prefixed either. – Sixfoot Studio Oct 22 '10 at 14:06
Thanks guys, I came right in the end – Sixfoot Studio Nov 4 '10 at 10:56
feedback

3 Answers

up vote 12 down vote accepted

If I recall correctly, word-wrap: break-word; is indeed supported in Internet Explorer 8, but the styled element must have layout.

link|improve this answer
4  
Yes. The page the OP linked says it right there: This property applies to elements that have layout. An element has layout when it is absolutely positioned, is a block element, or is an inline element with a specified height or width. – Matt Ball Oct 22 '10 at 13:56
feedback

I found that to apply word-wrap to a td (table cell) I needed to style the table element with table-layout: fixed. (IE8 standards mode.)

link|improve this answer
feedback

Does -ms-word-wrap work for you in IE 8?

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.