This question already has answers here:
No line-break after a hyphen

(5个答案)


5年前关闭。




我知道有一个不间断的空格- 。我可以使用一个不间断的破折号(-),以便我的单词不会在该位置处换行(断开)。也有人可以指向我列出一个在打断句子时会优先考虑的字符的列表(例如空格)。提前致谢 :)

最佳答案

使用‑代替-,请参见以下示例:

.box {
  border:1px solid #000;
  width:40px;
  word-wrap:normal;
}
<div class="box">
  This is a test&#8209;case / test-case
</div>

10-07 22:02