:first-child Description:
The :first-child pseudo-class matches an element that is the first child of another element.
:first-child Web Browser Support:
:first-child in CSS Versions:
:first-child Examples:
Select the paragraph tag that is the first child of a div
<style>
div > p:first-child { color: #f00; }
</style>
:first-child Special Notes:
- Internet Explorer does not support this pseudo-class.

