CSS :firstoftype Selector (original) (raw)
CSS :first-of-type Selector
Last Updated : 29 Aug, 2024
The ****:first-of-type Selector** is used to targeting the first child of every element of it's parent. if we want to style the first child of an element without giving a class, we can use it.
**Syntax:
:first-of-type {
//property
}
**Example:
HTML `
First child
Second child.
Third child.
Fourth child.
`
**Output:
**Supported Browsers:
- Google Chrome 1.0
- Edge 12.0
- Firefox 3.5
- Safari 3.1
- Opera 9.5