如何引用 class="name1 name2" 的 div?

发布于 2024-11-29 11:07:49 字数 115 浏览 1 评论 0 原文

我正在研究教程中的一些 CSS,div 具有此类:

<div class="related products">

如何在样式表中引用它?

I'm working on some CSS from a tutorial, a div has this class:

<div class="related products">

How can I reference it in the stylesheet?

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

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

发布评论

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

评论(4

做个少女永远怀春 2024-12-06 11:07:49

div 实际上有两个类,relatedproducts。您可以在样式表中使用 .lated.products 引用它,它会从这两个规则中获取样式。例如,使用以下 CSS,问题中的 div 中的文本将显示为红色,字体大小为 12:

.related { color:#ff0000 }
.products { font-size:12px }

如果要选择具有这两个类的元素,请使用 .lated.products< /code> 在你的样式表中。例如,将以下内容添加到上面的示例中:

.related.products { font-weight:bold }

div 中的文本将接收所有三个规则,因为它匹配所有 3 个选择器。这是一个有效的示例

The div actually has two classes, related and products. You can reference it in your stylesheet with either .related or .products, and it will pick up the styles from both of those rules. For example, with the following CSS, the text in the div in your question would appear red with font size 12:

.related { color:#ff0000 }
.products { font-size:12px }

If you want to select elements with both classes, use .related.products in your stylesheet. For example, add the following to the above example:

.related.products { font-weight:bold }

And the text in your div will receive all three rules, because it matches all 3 selectors. Here's a working example.

喜你已久 2024-12-06 11:07:49

div.lated.products 是通用方法

div.related.products is the general method

茶色山野 2024-12-06 11:07:49

您可以通过 div.lated.products 引用它,字面意思是“具有相关类和产品类的 div”。

或者,您可以使用任一类名来引用它,因为它会捕获两者。

jsFiddle 示例

You reference it by div.related.products which literaly translates to "a div with class of related and class of products".

Or, you could reference it by using either class names, since it will catch both.

jsFiddle Example.

蓝梦月影 2024-12-06 11:07:49

在 css 中,只需通过执行以下操作放置 div 的名称类:

.related products {
/*styling to go here*/
}

现在相关产品类中的任何样式都将应用于该 div。

In the css, just put the name class of the div by doing this:

.related products {
/*styling to go here*/
}

Now any styling within the related products class will be applied to that div.

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