Is there a "previous sibling" selector?
P粉111627787
P粉111627787 2023-08-23 14:02:00
0
2
440
<p>The plus selector (<code> </code>) selects the next adjacent sibling. </p> <p>Is there an equivalent for the previous sibling? </p>
P粉111627787
P粉111627787

reply all(2)
P粉098979048

I found a way to style all previous siblings (as opposed to ~) that might work depending on your needs.

Suppose you have a list of links, when the mouse is hovering over one of the links, all the previous links should turn red. You can do this:

/* default link color is blue */
.parent a {
  color: blue;
}

/* prev siblings should be red */
.parent:hover a {
  color: red;
}
.parent a:hover,
.parent a:hover ~ a {
  color: blue;
}
<div class="parent">
  <a href="#">link</a>
  <a href="#">link</a>
  <a href="#">link</a>
  <a href="#">link</a>
  <a href="#">link</a>
</div>
P粉044526217

No, there is no "previous sibling" selector.

Related to this, ~ is used for generic subsequent sibling elements (meaning that the element comes after this element, but not necessarily immediately after it), and is a CSS3 selector. Represents the next sibling, which is CSS2.1.

SeeAdjacent Sibling Combinators "http://www.w3.org/TR/css3-selectors/" rel="noreferrer">Selector Level 3 and 5.7 Adjacent Sibling Selectors From the Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) specification.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template