是否可以在 CSS 中使用连字符或软连字符,从而不会不必要地呈现连字符?
我的目标是尽可能保留原始文本并打破任何单词,除非绝对关键,因为它们太长而无法适应容器宽度。
我的具体情况
我想以这样的方式呈现文本“Hi Superman”:
如果“超人”这个词太长而无法放入容器中,我想以某种方式将其连字符,例如:
Hi Super-
man
但是如果“超人”这个词可以放入容器中,它必须在没有连字符的情况下呈现
Hi
Superman
如果上述情况是可能的(“超人”可以写成不带连字符的),那么添加不必要的连字符是不可接受的,如下所示:
Hi Super-
man
我可以随意更改 HTML。我被允许以一种有意义的方式注入连字符(只要每个连字符之间有 3 个以上的字母就可以了。“Superma-n”永远不行)
我试过的
我认为软连字符将是解决方案。所以我用:Hi Super­man
但我发现这会导致上面显示的“不必要的连字符”这种不可接受的情况。
显示失败的片段:
body {
margin-left: 30px;
}
div {
border: solid 1px black;
}
.wide {
border: solid 1px blue;
width: 500px;
}
.narrow {
border: solid 1px red;
width: 360px;
}
h2 {
font-family: 'Courier New';
font-weight: 400;
font-size: 87px;
}
code {
background-color: #eee;
}
<p> <code>Super&shy;man</code> looks good in really narrow containers where the full word "Superman" would not fit</p>
<p>
<div class="narrow"><h2>Hi Super­man</h2></div>
<p>But in this case the word "Superman" would fit unhypenhated on the second row. But the damn CSS decides to add hyphens anyway. Unacceptable in my case!
Again, this uses the same code as the previous example
<code>Super&shy;man</code></p>
<div class="wide"><h2>Hi Super­man</h2></div>
<p>I even tried adding a wordbreak tag before "Superman", like this <code>Hi <wbr> Super&shy;man</code> but it does not help</p>
<p> </p>
<div class="wide"><h2>Hi <wbr>Super­man</h2></div>
我可以只用 CSS 解决上面的例子吗?(尝试了不同的word-break
属性但没有成功)
我的猜测是,由于 CSS 的性质,仅使用简单的 HTML 和 CSS 是不可能解决这个问题的。我假设 CSS 只是逐行解析文本,它永远无法知道一个词是否会“更适合”下一行文本。如果它找到一个连字符,它将尝试在当前文本行上匹配最大数量的字符。
我想只用 HTML 和 CSS 来解决这个问题,或者根本不用。 编辑:最好 - 不使用 javascript 进行文本解析。
- 我不想根据 div 的宽度以及我是否猜测文本是否需要连字符来为每个 div 设置不同的 CSS 属性。
- 不希望在我的话周围添加包装
- 没有自动连字符会导致像“Superma-n”这样的可笑连字符(但是在紧要关头,只要每个连字符之间有 3 个字符,我就可以使用自动自动连字符。就像“超人”)