搜索

首页  >  问答  >  正文

仅使用 css,将 css 样式添加到 .apply-style-here 的父级(不带 .second-stage 类)

如何通过仅满足此条件将样式应用于 .apply-style-here 的父 div

  1. .apply-style-here 的父级应该是普通 div 或没有 .second-stage 类
  2. .apply-style-here 父级的父级不应该有 .second-stage 谢谢
<div class="first-stage">
    <div>
        <div class="apply-style-here">Content</div>
    </div>
</div>

<div class="first-stage">
    <div class="second-stage">
        <div>
            <div class="apply-style-here">Content</div>
        </div>
    </div>
    <div>
        <div class="apply-style-here">Content</div>
    </div>
</div>

尝试解决办法

/* Result: Put border to all parent of apply-style-here class */
.first-stage:has(div > .apply-style-here) > div {
/*  margin-top: 20px; */
  border: 1px solid red;
}

/* Result: No styles applied at all */
.first-stage:not('div > .second-stage') > div {
  border: 1px solid blue;
}

/* Result: No styles applied at all */
.first-stage:has(div:not('.second-stage') > .apply-style-here) > div {
    border: 1px solid blue;
}

/* Result: Applied to all .apply-style-here even second .second-stage is present */
.first-stage:has(div:not(.second-stage) > .apply-style-here) > div {
    border: 1px solid blue;
}
/* Result: Applied to all .apply-style-here even second .second-stage is present */

.first-stage:has(div:not(.second-stage > .apply-style-here)) > div {
    border: 1px solid blue;
}

P粉798010441P粉798010441430 天前570

全部回复(1)我来回复

  • P粉814160988

    P粉8141609882023-09-12 00:17:50

    根据您的描述,以下选择器可以工作:

    :not(.second-stage) > :not(.second-stage) > .apply-style-here

    :not(.second-stage) > :not(.second-stage) > .apply-style-here {
      border: solid 1px blue;
    }
    <div class="first-stage">
        <div>
            <div class="apply-style-here">Content</div>
        </div>
    </div>
    
    <div class="first-stage">
        <div class="second-stage">
            <div>
                <div class="apply-style-here">Content</div>
            </div>
        </div>
        <div>
            <div class="apply-style-here">Content</div>
        </div>
    </div>

    回复
    0
  • 取消回复