section {
color: gray;
}
<section> <p>paragraph</p> <a href="#">link</a> </section>
- The paragraph and link will be gray.
- The background color of the section element will be gray.
- The paragraph will be gray. The link will be the browser default, black.
- Only the paragraph will be gray.
Correct Answer:
- Only the paragraph will be gray.