--- title: Adjacent sibling combinator slug: Web/CSS/Adjacent_sibling_combinator translation_of: Web/CSS/Adjacent_sibling_combinator ---
{{CSSRef("Selectors")}}

ترکیب  (+) adjacent sibling combinator دو انتخابگر را از هم جدا می‌کند و زمانی تطابق انجام می‌شود که انتخابگر دوم بلافاصله بعد از انتخابگر اول آمده باشد و هر فرزند یک والد {{domxref("element")}} باشند.

/* باشند img پارگراف‌هایی که بلافاصله بعد از */
img + p {
  font-style: bold;
}

Syntax

former_element + target_element { style properties }

Example

CSS

li:first-of-type + li {
  color: red;
}

HTML

<ul>
  <li>One</li>
  <li>Two!</li>
  <li>Three</li>
</ul>

Result

{{EmbedLiveSample('Example', 200, 100)}}

Specifications

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.

Browser compatibility

{{Compat("css.selectors.adjacent_sibling")}}

See also