I need to wrap a long line and require that the strong ones break when the line breaks. The solution must be supported by all browsers.
The gap in bs and d should occur as follows:
Aaaa Bbbbbb bbbbbbbbbb Ccccc Dddddd ddddddddddd
The word-wrap: break-word tag breaks a string, but does not fill the string before breaking. Here's what happens:
Aaaa Bbbbbb Bbbbbbbbbb Ccccc Dddddd ddddddddddd
The word-break: break-all tag does exactly what I need, but it doesn’t work in Firefox and ie7 and below. It works only in Chrome, Safari and ie8.
The text-wrap tag does exactly what I need, but is not yet supported by any browser.
Any suggestions?
FYI: Im currently managing a PHP break.
source share