are “hyphens” supported?
HTML
<p id="auto">hyphens: auto; All human beings are born free and equal in dignity and rights. They are endowed with reason and conscience and should act towards one another in a spirit of brotherhood.</p>
<p id="manual">hyphens: manual; 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="none">hyphens: none; 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: 15em;
border: 1px solid red;
text-align: justify;
font-size: 1.25em;
font-family: monospace;
}
#auto {
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
-o-hyphens: auto;
hyphens: auto;
}
#manual {
-webkit-hyphens: manual;
-moz-hyphens: manual;
-ms-hyphens: manual;
-o-hyphens: manual;
hyphens: manual;
}
#none {
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
-o-hyphens: none;
hyphens: none;
}