is “hyphenate-limit-zone” supported?
HTML
<p id="percent">All human be­ings are bo­rn fr­ee and eq­ual in­ dignity a­nd rights. They a­re end­owed with re­ason and consc­ience and ­should act to­wards one anothe­r in a spirit of brotherhood.</p>
<p id="length">All human be­ings are bo­rn fr­ee and eq­ual in­ dignity a­nd rights. They a­re end­owed with re­ason and consc­ience and ­should act to­wards one anothe­r in a spirit of brotherhood.</p>
CSS
p {
width: 12em;
border: 1px solid red;
text-align: justify;
font-size: 1.25em;
font-family: monospace;
}
#percent {
-webkit-hyphens: manual;
-moz-hyphens: manual;
-ms-hyphens: manual;
-o-hyphens: manual;
hyphens: manual;
-webkit-hyphenate-limit-zone: 20%;
-moz-hyphenate-limit-zone: 20%;
-ms-hyphenate-limit-zone: 20%;
hyphenate-limit-zone: 20%;
}
#length {
-webkit-hyphens: manual;
-moz-hyphens: manual;
-ms-hyphens: manual;
-o-hyphens: manual;
hyphens: manual;
-webkit-hyphenate-limit-zone: 2em;
-moz-hyphenate-limit-zone: 2em;
-ms-hyphenate-limit-zone: 2em;
hyphenate-limit-zone: 2em;
}