CSS element+element Selector


Example

Select and style the first <p> element that are placed immediately after <div> elements:

div + p {
  background-color: yellow;
}
Try it Yourself »

Definition and Usage

The element+element selector is used to select an element that is directly after another specific element.

Version: CSS2

Browser Support

The numbers in the table specifies the first browser version that fully supports the selector.

Selector
element+element Yes 7.0 Yes Yes Yes

CSS Syntax

element + element {
  css declarations;
} Demo


Copyright 1999-2023 by Refsnes Data. All Rights Reserved.