I want to break a text with hyphenation, but it brings an error:
It says: "Invalid property value".
But in many docs they say, that the "auto" value exists!
It should break this text with hyphenation:
I hope, that someone can help me with that!
I want to break a text with hyphenation, but it brings an error:
It says: "Invalid property value".
But in many docs they say, that the "auto" value exists!
It should break this text with hyphenation:
I hope, that someone can help me with that!
To add to their answers to check if you have the right browser at https://caniuse.com/#feat=css-hyphens
You can also check MDN's documentation about it and see how your language dictionary may not be supported yet.
(scroll to the bottom to see Hyphenation dictionary language compatibility) https://developer.mozilla.org/en-US/docs/Web/CSS/hyphens
There is even a footnote that says for Chrome:
No automatic hyphenation, only
-webkit-hyphens: none
is supported.
If you take a look here http://caniuse.com/#feat=css-hyphens you can see that chrome doesn't really support hyphens.
"Only supported on Android & Mac platforms (and only the "auto" value) for now."
Not all browsers support hyphens: auto which is under CSS Text Module Level 3
For instance Chrome supports only inherit, initial, manual, none and unset with -Webkit- (13). What is the browser your are working with? Check CSS3 browser support for more detail.
'hyphens' is not supported by Chrome browser