I don't find the word-wrap: break-word;
rule too pleasant in the eyes in certain situations because it tends to break long strings in the wrong places given the right condition.
It produces something like this:
|--- DIV ---|
| |
| English/S |
| panish |
| |
|-----------|
instead of
|--- DIV ---|
| |
| English/ |
| Spanish |
| |
|-----------|
Is there a way for me to fine-tune my CSS rules so that it tries to break words through symbols first before breaking the actual words? If so, how do I do it?