--- title: Adjacent sibling combinator slug: Web/CSS/Adjacent_sibling_combinator translation_of: Web/CSS/Adjacent_sibling_combinator ---
ترکیب (+
) adjacent sibling combinator دو انتخابگر را از هم جدا میکند و زمانی تطابق انجام میشود که انتخابگر دوم بلافاصله بعد از انتخابگر اول آمده باشد و هر فرزند یک والد {{domxref("element")}} باشند.
/* باشند img پارگرافهایی که بلافاصله بعد از */ img + p { font-style: bold; }
former_element + target_element { style properties }
li:first-of-type + li { color: red; }
<ul> <li>One</li> <li>Two!</li> <li>Three</li> </ul>
{{EmbedLiveSample('Example', 200, 100)}}
Specification | Status | Comment |
---|---|---|
{{SpecName('CSS4 Selectors', '#adjacent-sibling-combinators', 'next-sibling combinator')}} | {{Spec2('CSS4 Selectors')}} | Renames it the "next-sibling" combinator. |
{{SpecName('CSS3 Selectors', '#adjacent-sibling-combinators', 'Adjacent sibling combinator')}} | {{Spec2('CSS3 Selectors')}} | |
{{SpecName('CSS2.1', 'selector.html#adjacent-selectors', 'Adjacent sibling selectors')}} | {{Spec2('CSS2.1')}} | Initial definition. |
{{Compat("css.selectors.adjacent_sibling")}}