<section> <p>paragraph one</p> </section> <p>paragraph two</p>
section p {
color: red;
}
section + p {
color: blue;
}
- Paragraph one will be blue, paragraph two will be red.
- Both paragraphs will be blue.
- Paragraphs one will be red, paragraph two will be blue.
- Both paragraphs will be red.
Correct Answer:
- Paragraphs one will be red, paragraph two will be blue.