• Out of Order Style Causes Breaks Mid-Word
    3 replies, posted
Post from Who is the most badass criminal? Right on the tin. Windows 10, Firefox 60.0.1 (64-bit)
It's because word-break; break-word; isn't supported on Firefox. Paste this into your custom CSS box to fix it: body {     word-break: normal; }
So it isn't. https://files.facepunch.com/forum/upload/269840/18c1204f-7f1d-4fb5-9025-4489f2c101e6/firefox_2018-05-22_08-11-10.png
Janus is fully right. `word-break: break-word;` is an unofficial Webkit/Blink thing, but it should do the same as `word-wrap: break-word;`. Try this. It fixes the issue in my Firefox. .ql-editor { word-wrap: break-word; word-break: initial; }
Sorry, you need to Log In to post a reply to this thread.