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
<!DOCTYPE html>
< html >
< head >
< style >
p:first-of-type {
background: limegreen;
font-size: 4.0em;
font-style: italic;
}
</ style >
</ head >
< body >
< p >First child</ p >
< p >Second child.</ p >
< p >Third child.</ p >
< p >Fourth child.</ p >
</ body >
</ html >
|
Output:
Supported Browsers:
- Google Chrome 1.0
- Edge 12.0
- Firefox 3.5
- Safari 3.1
- Opera 9.5
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
07 Jun, 2023
Like Article
Save Article