If you want the color of paragraphs and <h2> headers to be green, which CSS property would you use?
<h2>
p + h2 { color: rgb(0, 255, 0); }
p .h2 { color: #FFFFFF; }
p h2 { color: #00FF00; }
p, h2 { color: green; }