A very simple html:
<div style="width:200px">
<p>f 22222222222222222222222222</p>
</div>
will be rendered as:
f
22222222222222222222222222
and what I was expected is:
f 222222222222222
22222222222
is it possible to fix this?
Fiddle: http://jsfiddle.net/8yL6j/
It seems that you would like browsers to put as many characters on a line that fit there and then break, with no regard to normal line breaking behavior, rules of languages, etc., then use
word-break: break-allon the element.