Answers for "skip second child css"

CSS
0

css last 3 childs

#something a:nth-last-child(-n+3) {
    /*declarations*/
}
Posted by: Guest on October-13-2020
2

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 */
}
Posted by: Guest on November-23-2020

Browse Popular Code Answers by Language