CSS :first-child Selector


Example

Select and style every <p> element that is the first child of its parent:

p:first-child {
  background-color: yellow;
}
Try it Yourself »

More "Try it Yourself" examples below.


Definition and Usage

The :first-child selector is used to select the specified selector, only if it is the first child of its parent.

Version: CSS2

Browser Support

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

Selector
:first-child 4.0 7.0 3.0 3.1 9.6

CSS Syntax

:first-child {
  css declarations;
} Demo


More Examples

Example

Select and style every <i> element of every <p> element, where the <p> element is the first child of its parent:

p:first-child i {
  background: yellow;
}
Try it Yourself »

Example

Select and style the first <li> element in lists:

li:first-child {
  background: yellow;
}
Try it Yourself »

Example

Select and style the first child element of every <ul> element:

ul > :first-child {
  background: yellow;
}
Try it Yourself »

Related Pages

CSS tutorial: CSS Pseudo classes


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