Here’s an egregious elm-ui hack that clips long text on a single line, no matter how long it is, even if it has no spaces.
Basically you make your text element a paragraph so it will flow onto the next line. Then give it these attribs:
clipX
height fontsize
htmlAttribute (style “word-break” “break-word”)
https://ellie-app.com/y9JDS5fLhhfa1
Its awful but it works. Might get unwanted scroll bars sometimes. Got a better way to do it?