I have a small css script that force tag word-wrap in a div. It worked fine on FF, Chrome but didn\'t work on IE9. How can I fix it?
.
For me it worked in both Chrome and IE with:
.word-hyphen-break { word-break: break-word; word-wrap: break-word; width: 100%; }
like this no need to configure specific width.