0 / 60 seg.

In the following example, what color will paragraph one and paragraph two be? (Alternative: In this example, what color will paragraphs one and two be?)

<section>
  <p>paragraph one</p>
</section>
<p>paragraph two</p>
section p {
  color: red;
}
section + p {
  color: blue;
}