使用CSS仅覆盖前一个同级元素的CSS样式

huangapple go评论48阅读模式
英文:

Override a CSS Style for previous sibling using CSS only

问题

我希望将红色应用于div1,如果div2存在,否则应用黄色 -

.parentdiv:has(.div2) .div1 {
   color: red;
}

.parentdiv:not(:has(.div2)) .div1 {
   color: yellow;
}

请注意,:has选择器在某些浏览器中可能不被支持,这只是一种近似的方法。

英文:

I have some html like this -

<div class="parentdiv">
       <div class="div1"></div>
       <div class="div2"></div>
<div>

i want to apply red color to div1 if div2 exists else apply yellow -

.div1 {
   color:red;
}
.div1 {
   color:yellow;
}

How can i do it via CSS only? I know we have the sibling selectors but there is no previous sibling selector and in my case i'm looking for something similar - :has does not have support for all browsers.

答案1

得分: 1

根据您的要求,我的回答基于我的理解:

  • 如果.div1后面跟着.div2,那么.div1应该是红色的
  • 否则.div1应该是黄色的

您可以只使用 CSS 来实现,但前提是浏览器支持现代的 :has 选择器:

.div1 {
  color: yellow;
}

/* 仅当`.div1`紧接着被`.div2`跟着时为其单独设置样式 */
.div1:has(+ .div2) {
  color: red;
}

这将适用于以下任何情况:

<div>
  <div class="div1"></div> <!-- 显示为红色 -->
  <div class="div2"></div>
</div>

<div>
  <div class="div1"></div> <!-- 显示为黄色 -->
</div>

<div>
  <div>任何`.div1`之前的虚拟元素</div>
  <div class="div1"></div> <!-- 显示为红色 -->
  <div class="div2"></div>
  <div>任何`.div2`之后的虚拟元素</div>
</div>

<div>
  <div>任何`.div1`之前的虚拟元素</div>
  <div class="div1"></div> <!-- 显示为黄色 -->
  <div>任何`.div1`之后的虚拟元素</div>
</div>

查看下面的概念验证:

<!-- 此处为代码示例 -->

如果您不想使用 :has,您可以使用 :only-child 解决方案,但这仅适用于.div1是元素的唯一子元素的情况。如果在.div1之前或.div2之后有任意的 DOM 元素,则此方法不起作用:

<!-- 此处为另一个代码示例 -->

希望以上信息对您有所帮助。

英文:

My answer is based on my interpretation of your requirement:

  • If .div1 is followed by .div2, then .div1 should be red
  • Otherwise .div1 should be yellow

You can do that with CSS only, but with the pre-requisite that the browser supports the modern :has selector:

.div1 {
  color: yellow;
}

/* Style div1 separately if it is followed immediately by .div2 */
.div1:has(+ .div2) {
  color: red;
}

This will work for any for the following scenarios:

&lt;div&gt;
  &lt;div class=&quot;div1&quot;&gt;&lt;/div&gt;&lt;!-- Appears red --&gt;
  &lt;div class=&quot;div2&quot;&gt;&lt;/div&gt;
&lt;/div&gt;

&lt;div&gt;
  &lt;div class=&quot;div1&quot;&gt;&lt;/div&gt;&lt;!-- Appears yellow --&gt;
&lt;/div&gt;

&lt;div&gt;
  &lt;div&gt;Any dummy element before&lt;/div&gt;
  &lt;div class=&quot;div1&quot;&gt;&lt;/div&gt;&lt;!-- Appears red --&gt;
  &lt;div class=&quot;div2&quot;&gt;&lt;/div&gt;
  &lt;div&gt;Any dummy element after&lt;/div&gt;
&lt;/div&gt;

&lt;div&gt;
  &lt;div&gt;Any dummy element before&lt;/div&gt;
  &lt;div class=&quot;div1&quot;&gt;&lt;/div&gt;&lt;!-- Appears yellow --&gt;
  &lt;div&gt;Any dummy element after&lt;/div&gt;
&lt;/div&gt;

See proof-of-concept below:

<!-- begin snippet: js hide: true console: true babel: false -->

<!-- language: lang-css -->

.div1 {
  color: yellow;
}

.div1:has(+ .div2) {
  color: red;
}

/* START: For presentation only */
.parentdiv {
  background-color: #333;
  color: #fff;
  padding: 1rem;
  margin: 1rem;
}
/* END: For presentation only */

<!-- language: lang-html -->

&lt;div class=&quot;parentdiv&quot;&gt;
  &lt;div class=&quot;div1&quot;&gt;div1&lt;/div&gt;&lt;!-- Appears red --&gt;
  &lt;div class=&quot;div2&quot;&gt;div2&lt;/div&gt;
&lt;/div&gt;

&lt;div class=&quot;parentdiv&quot;&gt;
  &lt;div class=&quot;div1&quot;&gt;div1&lt;/div&gt;&lt;!-- Appears yellow --&gt;
&lt;/div&gt;

&lt;div class=&quot;parentdiv&quot;&gt;
  &lt;div&gt;Any dummy element before&lt;/div&gt;
  &lt;div class=&quot;div1&quot;&gt;div1&lt;/div&gt;&lt;!-- Appears red --&gt;
  &lt;div class=&quot;div2&quot;&gt;div2&lt;/div&gt;
  &lt;div&gt;Any dummy element after&lt;/div&gt;
&lt;/div&gt;

&lt;div class=&quot;parentdiv&quot;&gt;
  &lt;div&gt;Any dummy element before&lt;/div&gt;
  &lt;div class=&quot;div1&quot;&gt;div1&lt;/div&gt;&lt;!-- Appears yellow --&gt;
  &lt;div&gt;Any dummy element after&lt;/div&gt;
&lt;/div&gt;

<!-- end snippet -->


If you do not want to use :has, you can use the :only-child solution but this only works if .div1 is the ONLY child of the element. This will not work if you have arbitrary DOM elements occurring before .div1 or after .div2:

<!-- begin snippet: js hide: true console: true babel: false -->

<!-- language: lang-css -->

.div1 {
  color: red;
}

.div1:only-child {
  color: yellow;
}

/* START: For presentation only */
.parentdiv {
  background-color: #333;
  color: #fff;
  padding: 1rem;
}
/* END: For presentation only */

<!-- language: lang-html -->

&lt;div class=&quot;parentdiv&quot;&gt;
  &lt;div class=&quot;div1&quot;&gt;div1&lt;/div&gt;
  &lt;div class=&quot;div2&quot;&gt;div2&lt;/div&gt;
&lt;/div&gt;

&lt;hr /&gt;

&lt;div class=&quot;parentdiv&quot;&gt;
  &lt;div class=&quot;div1&quot;&gt;div1&lt;/div&gt;
&lt;/div&gt;

<!-- end snippet -->

huangapple
  • 本文由 发表于 2023年2月16日 05:50:55
  • 转载请务必保留本文链接:https://go.coder-hub.com/75465759.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定