CSS element+element Selector


Example

Select and style every <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 elements that is placed immediately after (not inside) the first specified 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

Note: For element+element to work in IE8 and earlier, a <!DOCTYPE> must be declared.


CSS Syntax

element + element {
    css declarations;
} Demo



Color Picker

colorpicker