In this example, what color will the paragraphs be and why?cssarticle p { color: blue;}article > p { color: green;}html Paragraph 1 Paragraph 2

🎲 Try a Random Question  |  Total Questions in Quiz: 114  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
CSS Quiz — practice the complete quiz, review flashcards, or try a random question.

CSS MCQs For LinkedIn Skill Assessments.


In this example, what color will the paragraphs be and why?<br>css<br>article p {<br> color: blue;<br>}<br>article > p {<br> color: green;<br>}<br><br>html<br><article><br> <p>Paragraph 1</p><br> <aside><br> <p>Paragraph 2</p><br> </aside><br></article><br>