css selector select 2nd child code example
Example 1: css nth child
:nth-child(3) { //the number is the child number you are targeting
//styles here
}
Example 2: select first 5 child css
li:nth-child(-n+5) {
color: green;
}
:nth-child(3) { //the number is the child number you are targeting
//styles here
}
li:nth-child(-n+5) {
color: green;
}