target second child css code example
Example 1: second child css
.YourElementsClass:nth-child(2) {
/* your styles */
}
Example 2: css nth child
:nth-child(1) { /*advantage is you can do it for 2nd, 3rd etc. */
/* styles go here*/
}
.YourElementsClass:nth-child(2) {
/* your styles */
}
:nth-child(1) { /*advantage is you can do it for 2nd, 3rd etc. */
/* styles go here*/
}