HTML:软连字符 (­) 没有破折号?

发布于 2024-10-18 03:52:16 字数 308 浏览 6 评论 0原文

我有一个布局问题:在客户网站上,我们在一个小框中显示人员的联系信息。该框的宽度受到限制。碰巧,有些人的名字很长(毕竟这是在德国……),而电子邮件地址是名字和姓氏的串联。结果:对于某些名称,电子邮件地址超出了“关于”框给出的限制。

@ 之前插入 ­ 会产生正确的换行符,但看起来像这样:

john.doe-
@example.com

是否可以抑制该破折号?我不想使用
,因为对于 90% 的名称,可用宽度绰绰有余。

I have a little layout problem: on a clients website, we show contact information of people in a little box. The width of that box is constrained. As it happens, there are people with very long names (this is in Germany, after all...), and the email address is a concatenation of the given name and family name. The result: with certain names, the email address overflows the constraints given by the about box.

Inserting a ­ before the @results in the correct line break, but looks like this:

john.doe-
@example.com

Is it possible to suppress that dash? I don't want to use <br />, because for 90% of the names, the available width is more than enough.

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

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

发布评论

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

评论(6

燕归巢 2024-10-25 03:52:16

虽然我不确定这如何跨浏览器(可能很好),但您始终可以使用细空格字符(或零宽度空格(< code>​).++

john.doe @example.com

++ 我不建议使用零宽度空格,显然有些浏览器将无法正确渲染它(来源)。

Though I'm not sure how this does cross-browser (probably pretty well), you could always use the thin space character () or the zero-width space ().++

john.doe @example.com

++ I would not suggest using the zero-width space, as apparently some browsers will not render it correctly (source).

夜无邪 2024-10-25 03:52:16

使用零宽度空格:

john.doe​@example.com

此处的操作:http:// /jsfiddle.net/uTXwx/1/

Use a zero-width space:

john.doe​@example.com

In action here: http://jsfiddle.net/uTXwx/1/

掌心的温暖 2024-10-25 03:52:16

如果您愿意放弃对 Internet Explorer 11 的支持,则可以使用 元素。这可能优于使用零宽度空间,因为它不会被复制到剪贴板中。

在此处查看实际操作

MDN 文档

If you're willing to drop support for Internet Explorer 11, then you can use the <wbr> element. This is probably superior to using the zero-width-space, because it won't be copied into the clipboard.

See it in action here

MDN documentation

滴情不沾 2024-10-25 03:52:16

您可以通过将 hyphenate-character 设置为来抑制连字符空字符串:

{
  hyphenate-character: "";
}

不会打印破折号,将复制/粘贴没有不需要的字符

You can suppress hyphens by setting hyphenate-character to an empty string:

{
  hyphenate-character: "";
}

won't print a dash, will copy/paste without unwanted characters

苏别ゝ 2024-10-25 03:52:16

您可能想看看 css 属性 word-wrap

此页面似乎正在做你想做的事情。

You may want to have a look on css property word-wrap.

And this page seems to be doing what you want.

还在原地等你 2024-10-25 03:52:16

我更喜欢使用预期的 换行机会 HTML 元素。它本质上是 U+200B 零宽度空间,并且其行为与它一样,因此没有连字符。

我发现在源代码中查看 的作用比使用 更清楚。

john.doe<wbr>@example.com

john.doe​example.com

两者都不会中断连字符。

john.doe
@example.com

I prefer to use the intended <wbr> line break opportunity HTML element. It's essentially the U+200B zero-width space and behaves as it does, so no hyphen.

I find that it's clearer to see what <wbr> does in the source code than using .

john.doe<wbr>@example.com

john.doe​example.com

Both break without a hypen.

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