how to target second child css code example
Example 1: nth-child() css
/* Selects the second <li> element in a list */
li:nth-child(2) {
color: lime;
}
/* Selects every fourth element
among any group of siblings */
:nth-child(4n) {
color: lime;
}
Example 2: second child css
.YourElementsClass:nth-child(2) {
/* your styles */
}
Example 3: css nth child
:nth-child(3) { //the number is the child number you are targeting
//styles here
}
Example 4: how select two nt child with css
//Separate the classes with a comma ,
.ListTaskTime tbody tr >td:nth-child(3),
.ListTaskTime tbody tr >td:nth-child(6),
.ListTaskTime tbody tr >td:nth-child(9) {
/* Common Styles Goes Here, Styles will apply to child 3,6 and 9 */
}