Question: Which code sample will change the fourth item in a bulleted list to red font with a yellow background? A . ) ul > li:nth

Which code sample will change the fourth item in a bulleted list to red font with a yellow background?
A.)
ul > li:nth-child(4){
color: red;
background-color: yellow;
}
B.)
ul > li:4th-child(){
color: red;
background-color: yellow;
}
C.)
ul > li:nth-child(4){
color: red
background-color: yellow;
}
D.)
ul > li:nth-child(){
color: red;
background-color: yellow;
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!