为什么连字符不能应用于所有单词?

时间:2019-09-23 13:14:24

标签: css css-hyphens

我不明白为什么连词中都没有连字符。参见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;
}

0 个答案:

没有答案