PrepAway - Latest Free Exam Questions & Answers

Which CSS selector should you use?

You develop an HTML application that contains a table that displays a list of products. The table is defined with
the following HTML markup:

You must style the table to look like the following image:

You need to implement the CSS selectors to select the rows that must have a blue background.
Which CSS selector should you use?

PrepAway - Latest Free Exam Questions & Answers

A.
tr : first-line, tr :last-child

B.
tr [line |=0, 1, 3]

C.
tr: nth-child (0) : in-range, tr: nth-child (3) : in-range

D.
tr: nth-child(3n+1) {background-color : blue;}

2 Comments on “Which CSS selector should you use?

  1. aalam says:

    There are two versions of this question. These are valid Answers:
    1) tr:first-of-type, tr:last-of-type {background-color : blue;}
    2) tr: nth-child(3n+1) {background-color : blue;}




    6



    0

Leave a Reply