CSS:#id .class VS .class 性能。哪个更好?

发布于 2024-12-07 21:21:48 字数 236 浏览 0 评论 0原文

我认为这会

#dialog .videoContainer { width:100px; }

比:更快:

.videoContainer { width:100px; }

当然,忽略第一个示例中的 .videoContainer 只会在 #dialog 标记下设置样式。

I'd assume that this would be faster:

#dialog .videoContainer { width:100px; }

than:

.videoContainer { width:100px; }

Of course disregarding that .videoContainer in the first example would only be styled under the #dialog tag.

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

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

发布评论

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

评论(1

人海汹涌 2024-12-14 21:21:48

CSS 选择器从右到左匹配

因此,.videoContainer 应该比 #dialog .videoContainer“更快”,因为它错过了对 #dialog 的测试。

然而,这充其量都是无关紧要的——你永远不会注意到其中的区别。对于正常大小的页面,我们讨论的时间微不足道,甚至不存在。

以下是专家的相关回答,您应该阅读: 为什么浏览器匹配 CSS 选择器从右到左?

CSS selectors are matched from right to left.

Therefore, .videoContainer should be "faster" than #dialog .videoContainer because it misses out testing for #dialog.

However, this is all irrelevant at best - you'll never notice the difference. For normally sized pages, the amount of time we're talking about is so insignificant as to be nonexistent.

Here's a relevant answer by an expert that you should read: Why do browsers match CSS selectors from right to left?

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