What effect will this CSS rule have?

tr:nth-child(odd){background-color: gray;}

(1 point)
Responses

make all of the even table rows gray

make all of the even table rows gray

make all of the odd table rows gray

make all of the odd table rows gray

make all of the table rows gray

make all of the table rows gray

make child rows

1 answer

The CSS rule tr:nth-child(odd){background-color: gray;} will:

make all of the odd table rows gray.

So, the correct response is: make all of the odd table rows gray.