Search w3schools.com:

SHARE THIS PAGE

CSS Reference

CSS Reference CSS Selectors CSS Reference Aural CSS Web Safe Fonts CSS Units CSS Colors CSS Color Values CSS Color Names CSS Color HEX CSS3 Browser Support

CSS Properties

CSS :first-child Selector

Complete CSS Selector Reference Complete CSS Selector Reference

Example

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

p:first-child
{
background-color:yellow;
}

Try it yourself »

Definition and Usage

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


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The :first-child selector is supported in all major browsers.

Note: For :first-child to work in IE8 and earlier, a <!DOCTYPE> must be declared.


Related Pages

CSS tutorial: CSS Pseudo classes


Examples

Try it Yourself - 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 »


Complete CSS Selector Reference Complete CSS Selector Reference

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]