To change the color of all paragraphs and <h1> headers to blue, which CSS property would you use?
<h1>
p h1 { color: #0000FF; }
p, h1 { color: blue; }
p + h1 { color: rgb(0, 0, 255); }
p .h1 { color: #FFFFFF; }