If you want the text of paragraphs with the class "alert" to be green, which CSS property would you apply?
p.alert { color: #00FF00; }
p .alert { color: green; }
.alert p { color: rgb(0, 255, 0); }
p#alert { color: #000000; }