70-480 Exam QuestionsBrowse all questions from this exam

70-480 Exam - Question 37


You develop an HTML5 webpage. You have the following HTML markup: (Line numbers are for reference only.)

Exam 70-480 Question 37

The webpage also contains the following CSS markup:

Exam 70-480 Question 37

You need to determine how the webpage will appear when the CSS styles are applied.

Select two.

Show Answer
Correct Answer: AE

AE

Exam 70-480 Question 37

Discussion

12 comments
Sign in to comment
eMax
Oct 14, 2019

It looks like the answer is A, D - not A, E

nelaed
Jul 24, 2020

Yes, i have tested it and it's A & D.

TonyBezerra
Oct 21, 2019

I think the right answer are A and D.

Etnic
Nov 12, 2019

correct answer A,D

MoSalah10
Jan 17, 2020

Thank me, AD correct https://jsfiddle.net/g8ntboh1/

MoSalah10
Jan 17, 2020

Ignore this, check the other fiddle

alexcode
Dec 3, 2020

Yoy have error in jsfiddle, excess ек

alexcode
Dec 3, 2020

excess tr

alexcode
Dec 3, 2020

excess tr

Piggas
Aug 6, 2019

All odd rows (row 1 & 3) will be red background and all cells in columns 2 all rows will be blue.

Steve0
May 12, 2020

row 1 is a <th>, not a <td>, so column 2 of the first row will be red, not blue. Because of this, the correct answer is A & D. (for E to be correct, the last CSS line would need to be "tr:nth-of-type(even) td:nth-of-type(even) {background-color:blue}"

MFDOOM
Mar 23, 2020

A & D ar ethe correct answers

MoSalah10
Jan 17, 2020

Ignore the other fiddle, miner mistake ... correct one :https://jsfiddle.net/g8ntboh1/1/

eMax
Oct 14, 2019

what does it mean: will have not have?

Sanfour
Mar 17, 2020

I think C & D

nelaed
Jul 21, 2020

A&D are correct. <table> <tr> <th>one</th> <th>two</th> <th>three</th> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> </tr> </table> <style> table { border: 1px solid black; font-family: Arial; } tr:nth-child(odd) { background-color: red; } tr td:nth-of-type(even) { background-color: blue; } </style>

alexcode
Nov 26, 2020

AD is Correct Answer

nootje
Sep 28, 2021

i checked with vscode and 1st and 3rd row get red and de 2nd cells of the 2nd, 3rd and 4rth row are turning blue. So i would say that A and D are correct.