- 🇺🇸United States mlncn Minneapolis, MN, USA
Hi! Apologies for the late review.
As per https://developer.mozilla.org/en-US/docs/Web/CSS/word-break is a very bad idea as a global rule:
word-break: break-all
will create a break at the exact place where text would otherwise overflow its container (even if putting an entire word on its own line would negate the need for a break).overflow-wrap: anywhere
specifically for content areas might make sense.But this needs more research and testing.
- 🇮🇳India shubham_jain
Hi all, you can also use the overflow-wrap to solve this issue.
{ overflow-wrap: break-word; }
See the doc for refrence.
https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-wrap - First commit to issue fork.
- 🇮🇳India jaydeep_patel Ahmedabad
Text flowing out of div issue resolved check screenshot for the same.
- Status changed to Needs review
5 months ago 9:06am 19 July 2024 - 🇮🇳India jaydeep_patel Ahmedabad
Text flowing out of div issue resolved check screenshot for the same.
- Assigned to hetal.solanki
- Issue was unassigned.
- Status changed to RTBC
5 months ago 11:12am 19 July 2024 - 🇮🇳India hetal.solanki
I have reviewed MR!17. Now it's looks good.
i moved it to RTBC.
THANKS!!