Re: [csswg-drafts] [css-text] Having overflow-wrap: break-word affect min-content size is not webcompatible

to add on what @upsuper said here and because of the initial discussion in #2390

This is a pattern we see on the Web which is partly creating this issue.

Example https://github.com/webcompat/web-bugs/issues/18205

```css
.brz .brz-rich-text {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-all;
    word-break: break-word;
}
```

One of the issues we see, even with the new version of `overflow-wrap: break-word;`.

Which ever order in the cascade, for browsers not implementing `word-break: break-word;` (ie, edge, firefox), the `word-break: break-all;` will take precedence over `overflow-wrap: break-word;`. 




-- 
GitHub Notification of comment by karlcow
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/2951#issuecomment-413412290 using your GitHub account

Received on Thursday, 16 August 2018 03:20:57 UTC