Is there a way to make the browser wrap on hyphens instead of cutting off the last letter on a line?
I haven't noticed any difference between word-break and word-wrap.
Check out this live example:
<div style="word-break:break-normal;font-size:14px;width:109px;">
Members-Only Menu
</div>
Currently, it looks like this:
Members-Onl
y Menu
But I need it to look like this:
Members-
Only Menu
Any suggestions on how to achieve that?