如果 div 具有两个类,请选择它 - 有效的 CSS?

发布于 2024-12-03 20:21:41 字数 280 浏览 1 评论 0原文

在 Firefox 中,以下 CSS 仅应用于最后一个 div,因为它是唯一具有这两个类的 div:

.a.b {
color: red;
}

<div class="a"> Stuff A</div>
<div class="b"> Stuff B</div>
<div class="a b"> Stuff A and B</div>

这是有效的 CSS 吗?我只是担心,因为我以前从未听说过。 谢谢

In firefox the following CSS is only applied to the last div, as its the only div with both classes:

.a.b {
color: red;
}

<div class="a"> Stuff A</div>
<div class="b"> Stuff B</div>
<div class="a b"> Stuff A and B</div>

Is this valid CSS? Im just worried as ive never heard of it before.
Thanks

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

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

发布评论

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

评论(1

灵芸 2024-12-10 20:21:41

这是有效的 CSS。除了ie6之外,几乎所有浏览器都支持多类选择器

Browser support s
Mac: Safari 4.0 supported
Mac: Chrome 5.0 supported
Mac: FireFox 3.6    supported
Mac: Opera 10   supported
Win: FireFox 3.6    supported
Win: Opera 10   supported
Win: IE6    NOT SUPPORTED
Win: IE7    supported
Win: IE8    supported

来源:
http://www.maxdesign.com.au/articles/multiple-classes/

This is valid css. Almost all browsers support multiple class selector except ie6

Browser support s
Mac: Safari 4.0 supported
Mac: Chrome 5.0 supported
Mac: FireFox 3.6    supported
Mac: Opera 10   supported
Win: FireFox 3.6    supported
Win: Opera 10   supported
Win: IE6    NOT SUPPORTED
Win: IE7    supported
Win: IE8    supported

Source:
http://www.maxdesign.com.au/articles/multiple-classes/

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