零宽度单词连接器和 CSS 生成的内容

发布于 2024-10-11 13:11:02 字数 494 浏览 4 评论 0原文

我想禁止网页中某些地方的换行(例如,当浏览器将文本“100 km/h”分成两行时,这真的很难看 - 在这个问题中,我担心“/”附近的换行) 。我尝试了这种方法,它有效实体

x&zwj;/&zwj;y <!-- x/y on one line -->

是一个零宽度单词连接器,类似于 &nbsp;,但没有空格。

然而,我担心一个稍微复杂的例子:

x&zwj;/<span class="someclass"></span>

with style:

.someclass { content: "y"; }

这似乎在 Firefox 中有效(正常内容和生成内容之间没有换行符),但在 Opera 中,它失败了。这应该按照标准进行吗?

I want to disallow line breaks in some places in a web page (eg. it's really ugly when the browser breaks the text "100 km/h" on two lines - in this question I'm concerned about breaking near the "/"). I tried this approach and it works

x‍/‍y <!-- x/y on one line -->

The entity is a zero-width word joiner, similar to  , but without space.

However, I am concerned about a slightly more complex example:

x‍/<span class="someclass"></span>

with style:

.someclass { content: "y"; }

This seems to work in Firefox (no linebreaks between normal and generated content), but in Opera, it fails. Should this work according to the standards?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

纸短情长 2024-10-18 13:11:02

设置 white-space: nowrap; 如下所示:webdesignerwall.com

Set white-space: nowrap; as seen here: webdesignerwall.com

や莫失莫忘 2024-10-18 13:11:02

简单地设置 br 元素以显示 none 在 Chrome 上对我有用。 FF、IE之类的我不太清楚,不过应该不难查!

.someclass br { display: none; }

Simply setting the br element to display none worked for me on Chrome. I'm not sure about FF, IE, and the like, but it shouldn't be too hard to check!

.someclass br { display: none; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文