css nth child first and second code example
Example 1: nth of type for every 4th after the 1st
:nth-of-type(4n+1)
Example 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 */
}