I use the following css to auto hyphen text in my website:
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
But in chrome this has no effect. I already read, that chrome doesn't support this. Is there any workaround for hyphenation in chrome? Thanks!
hyphens: initial
to undo a previoushyphens: none
(and allow hyphenation at­
) though the property doesn't appear to support setting any specific value other thannone
. – Thomism