[csswg-drafts] Prevent line break after hyphen preceded by space (#3463)

valtlai has just created a new issue for https://github.com/w3c/csswg-drafts:

== Prevent line break after hyphen preceded by space ==
I want to prevent a line break after a hyphen which is preceded by a space.

So a string like
```
foo bar -baz
```
can be broken as
```
foo bar
-baz
```
but not
```
foo bar -
baz
```

I’m not sure if this can be solved by CSS spec (e.g., a new keyword for `hyphens` or `overflow-wrap`, etc.) or if it’s a browser bug: Firefox does like described by default, Chrome doesn’t.

Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/3463 using your GitHub account

Received on Thursday, 20 December 2018 08:27:15 UTC