<section><p>paragraph one</p></section><p>paragraph two</p>
- [ ]
section > p { color: blue; } - [ ]
p { color: blue; } - [ ]
section + p { color: blue; } - [ ]
p + section { color: blue; }
What style rule would set the font color of only paragraph two to blue?
<section><p>paragraph one</p></section><p>paragraph two</p>
section > p {
color: blue;
}
p {
color: blue;
}
section + p {
color: blue;
}
p + section {
color: blue;
}
Latest Updates
No posts found in this category.