CSS :only-of-type Selector


Example

Specify a background color for every <p> element that is the only child of its type, of its parent:

p:only-of-type {
  background: #ff0000;
}
Try it Yourself »

Definition and Usage

The :only-of-type selector matches every element that is the only child of its type, of its parent.

Version: CSS3

Browser Support

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

Selector
:only-of-type 4.0 9.0 3.5 3.2 9.6

CSS Syntax

:only-of-type {
  css declarations;
} Demo


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