我不明白为什么连词中都没有连字符。参见Codepen example中的“令人难以想象的”内容,并通过Chrome进行了测试:
HTML
<div id="conteneur"><p>The word incomprehensibilities have more
characters than unimaginatively</p></div>
CSS
#conteneur {
border:1px solid grey;
padding: 10px;
max-width:280px;
}
p {
font-size:70px;
overflow-wrap: break-word;
word-wrap: break-word;
-webkit-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}