Chrome 中的伪元素之前

发布于 2024-11-17 07:38:01 字数 357 浏览 3 评论 0原文

在我看来,Chrome 不会将“before”伪元素视为元素的一部分。更准确地说,我有 CSS 定义

.myclass:before{content:"A";}

和 HTML 代码,

<a href="blah" class="myclass">B</a>

在 Chrome 中,结果是超链接“AB”,但实际上只有“B”可点击。在 Firefox 和 Opera 中,整个“AB”是一个链接,我对 CSS 标准的阅读表明 Chrome 在这里是错误的。

我是否正确地假设这是 Chrome 的错误?有没有简单干净的解决方法?

It appears to me that Chrome does not treat "before" pseudoelement as a part of an element. More precisely, I have CSS definition

.myclass:before{content:"A";}

and HTML code

<a href="blah" class="myclass">B</a>

In Chrome the result is a hyperlink "AB" but only "B" is actually clickable. In Firefox and Opera the whole "AB" is a link, and my reading of CSS standard indicates that Chrome is wrong here.

Am I right in assuming that this is Chrome's bug? Is there a simple and clean workaround?

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

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

发布评论

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

评论(1

情深缘浅 2024-11-24 07:38:01

看来你可以解决这个问题:

.myclass {
    display: inline-block
}

http://jsfiddle.net/SUKYw/

看起来像 Chrome bug - Safari 没有同样的问题。

It seems that you can work around it with:

.myclass {
    display: inline-block
}

http://jsfiddle.net/SUKYw/

Looks like a Chrome bug - Safari does not have the same problem.

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