无法确定该选择器

发布于 2024-12-27 06:27:02 字数 273 浏览 0 评论 0原文

我有一个看起来像这样的 div

<div class="listItem jrFeatured">

我希望它保留 listItem 的所有 CSS,但有 jrFeatured 的附加 CSS

但我不希望所有 jrFeatured > 仅与 listItem 中的不同

我真的误解了这一点还是有办法实现我想要的?

I have a div that looks like this

<div class="listItem jrFeatured">

I want it to retain all the CSS of listItem but have additional CSS for jrFeatured

But I dont want all jrFeatured to be different only the one thats in listItem

Am I really misunderstanding this or is there a way to achieve what I want?

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

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

发布评论

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

评论(1

风吹短裙飘 2025-01-03 06:27:03
.listItem {
    /* code for item(s) matching listItem class */
}

.jrFeatured {
    /* code for item(s) matching jrFeatured class */
}

.listItem.jrFeatured {
    /* code for item(s) matching BOTH listItem and jrFeatured classes */
    /* based on your question, this sounds like what you're looking for */
}
.listItem {
    /* code for item(s) matching listItem class */
}

.jrFeatured {
    /* code for item(s) matching jrFeatured class */
}

.listItem.jrFeatured {
    /* code for item(s) matching BOTH listItem and jrFeatured classes */
    /* based on your question, this sounds like what you're looking for */
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文