What is the color of "Sausage"?

Q: What is the color of the text "Sausage" in the code below?

<ul class="shopping-list" id="awesome">
    <li><span>Milk</span></li>
    <li class="favorite" id="must-buy"><span class="highlight">Sausage</span></li>
</ul>


ul {color:red;}
li {color:blue;}

 A: blue。

 

Q: What is the color of the text "Sausage" in the code below?

 

<ul class="shopping-list" id="awesome">
    <li><span>Milk</span></li>
    <li class="favorite" id="must-buy"><span class="highlight">Sausage</span></li>
</ul>


ul {color:red;}
#must-buy {color:blue;}

  A: blue。

 

 

Q: What is the color of the text "Sausage" in the code below?

 

<ul class="shopping-list" id="awesome">
    <li><span>Milk</span></li>
    <li class="favorite" id="must-buy"><span class="highlight">Sausage</span></li>
</ul>


.shopping-list .favorite {
    color: red;
}
#must-buy {
    color: blue;
}

  A: blue。

 

 

Q: What is the color of the text "Sausage" in the code below?

 

<ul class="shopping-list" id="awesome">
    <li><span>Milk</span></li>
    <li class="favorite" id="must-buy"><span class="highlight">Sausage</span></li>
</ul>


ul#awesome {
    color: red;
}
ul.shopping-list li.favorite span {
    color: blue;
}

  A: blue。

 

 

Q: What is the color of the text "Sausage" in the code below?

 

<ul class="shopping-list" id="awesome">
    <li><span>Milk</span></li>
    <li class="favorite" id="must-buy"><span class="highlight">Sausage</span></li>
</ul>


ul#awesome #must-buy {
    color: red;
}
.favorite span {
    color: blue!important;
}

  A: blue。

 

 

Q: What is the color of the text "Sausage" in the code below?

 

<ul class="shopping-list" id="awesome">
    <li><span>Milk</span></li>
    <li class="favorite" id="must-buy"><span class="highlight">Sausage</span></li>
</ul>


ul.shopping-list li .highlight {
    color: red;
}
ul.shopping-list li .highlight:nth-of-type(odd) {
    color: blue;
}

  A: blue。

 

 

Q: What is the color of the text "Sausage" in the code below?

 

<ul class="shopping-list" id="awesome">
    <li><span>Milk</span></li>
    <li class="favorite" id="must-buy"><span class="highlight">Sausage</span></li>
</ul>


#awesome .favorite:not(#awesome) .highlight {
    color: red;
}
#awesome .highlight:nth-of-type(1):nth-last-of-type(1) {
    color: blue;
}

  A: blue。

 

 

 

 

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326753802&siteId=291194637