I'm having trouble with getting a long paragraph of words to wrap to the next line without them breaking at all, even with hyphens.
My code:
p {
white-space: pre-wrap !important;
word-wrap: normal !important;
word-break: normal !important;
overflow-wrap: normal !important;
}
On Chrome, the word wrap works fine. No hyphens, just beautiful word-wrap with WHOLE words. On Firefox and Edge, I get word-wrap with HYPHENS, cutting up words between two lines.
What am I doing wrong here?