I've added word-break:break-word
to the comments on my site to start breaking up the words when they overflow the comment box, but it doesn't appear to be working in Firefox. I've done a JS fiddle of the setup and it does work. So something must be conflicting but I can't find it for the life of me.
JS Fiddle (working): http://jsfiddle.net/F6K99/6/
Live problem: http://bit.ly/13NcY5F
You can achieve this by the following:
A. Use word-break:break-all;
instead of word-break:break-word;
B. Or, Use word-wrap: break-word;
instead of word-break:break-word;
As far as I know, word-break
does not have break-word
attribute.
Hope this Helps.