Task #3199
closed

Lines don't wrap correctly on AskLibO
0%
Description
Since recently, lines in questions, answers and comments are not wrapped by word boundaries on AskLibO anymore, but break in the middle of a word. See e.g. https://ask.libreoffice.org/en/question/241343, which title looks for me like
Why are comments on Ask LibreOffice not wrap
ped correctly?
i.e., first four characters of "wrapped" are on first line, and the rest on the second.
Updated by Beluga Beluga about 5 years ago
The cause is this CSS rule:
.question-page .post-content {
word-break: break-all;
}
I think a better value would be break-word, but it is not supported in Internet Explorer. Or just forget about the whole rule.
Updated by Florian Effenberger about 5 years ago
- Assignee set to Evgeny Fadeev
Evgeny, can you have a look? :)
Updated by Guilhem Moulin about 5 years ago
- Category set to AskLibO
Evgeny, can you have a look? :)
Meanwhile I blindly applied proposed Beluga's fix to /srv/ask/node2_*/tdf/media/style/extra.css.
Updated by Mike Kaganski about 5 years ago
Meanwhile I blindly applied proposed Beluga's fix to /srv/ask/node2_*/tdf/media/style/extra.css.
That helped; thanks Guilhem!
Updated by Evgeny Fadeev about 5 years ago
break-word is safer for the text, although sometimes there is an extra-long word usually from some computer code that won't fit.