I needed to fix some CSS somewhere because my text wasn't wrapping around and was instead going on indefinitely if it was an extremely long word.
Like in most cases, I tried word-wrap: break-word;
in my CSS file and it did not work.
Then, to my surprise, and by the suggestion of Google Chrome Developer Tools, I tried word-break: break-word;
and it fixed my problem. I was shocked by this so I've been googling to know the difference between these two but I have seen nothing on the subject.
Further, I don't think word-break: break-word;
is documented behavior seeing as how W3 has no mention of it. I tested it on Safari and Chrome, and it works perfectly on both, but I'm hesitant to use word-break: break-word;
because I see no mention of it anywhere.
word-wrap: break-word;
I'd rather not rely on something that isn't officially documented/supported across all relevant browsers. – Waterside