Is there a way to tell h:outputText of JSF (2.0) to insert a line break (or even better: A custom string like \"-\") into very long words within strings? My pro
h:outputText
if you have very long word in String you can use word-break: break-all; like this:
word-break: break-all;
but it required CSS3. link: word-break