How to mimic word-break: break-word; for IE9, IE11 and Firefox?
word-break: break-word;
It seems to work in Chrome. I have learnt and understood that it is a is non-standard, webki
Use display:table-caption to achieve what you are looking for.
display:table-caption
LIVE DEMO
The HTML:
Product Support
The CSS:
#theSpan{ display:table-caption; }
Hope this helps.