有什么方法可以修复 Chrome 中的 CSS3 内容属性闪烁吗?

发布于 2024-10-23 17:58:39 字数 289 浏览 6 评论 0原文

我创建了一个使用这种类型样式的页面:

nav ul li:before {
  content: " / ";
}
nav ul li:last-child:before {
  content: "";
}

大多数时候,我希望在 li 元素之前有一个“/”(最后一个元素除外)。

问题是,在 Chrome 中(仅据我所知),有时我会看到“/”有点闪烁,即使它不应该在那里。它出现一会儿然后消失。

还有其他人看到过这个或解决过这个问题吗?

I've created a page where I use this type of styling:

nav ul li:before {
  content: " / ";
}
nav ul li:last-child:before {
  content: "";
}

Where most of the time, I want a "/" before the li elements except on the last one.

The problem is that in Chrome (only as far as I know), I sometimes get a little flicker of the "/", even though it's not supposed to be there. It shows up for a moment and then disappears.

Anyone else seen this or worked around it?

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

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

发布评论

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

评论(2

病毒体 2024-10-30 17:58:39

我会针对 Webkit(如果您可以每晚在 webkit 中重现)或 Chrome(如果仅在 Chrome 中)提交错误报告。

I'd file a bug report against Webkit (if you can reproduce in a webkit nightly) or Chrome if it's only in Chrome.

迷爱 2024-10-30 17:58:39

尝试

nav ul li:not(:last-child):before {
  content: " / ";
}

try

nav ul li:not(:last-child):before {
  content: " / ";
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文