is “hyphenate-limit-lines” supported?
HTML
<p id="integer">Integer 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="no-limit">No-limit. 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</p>
CSS
p {
width: 17em;
border: 1px solid red;
text-align: justify;
font-size: 1.25em;
font-family: monospace;
}
#integer {
-webkit-hyphens: manual;
-moz-hyphens: manual;
-ms-hyphens: manual;
-o-hyphens: manual;
hyphens: manual;
-webkit-hyphenate-limit-lines: 5;
-moz-hyphenate-limit-lines: 5;
-ms-hyphenate-limit-lines: 5;
hyphenate-limit-lines: 5;
}