To make all paragraphs with the class "special" have red text color, which CSS property would you use?
p, .special { color: red; }
.special p { color: red; }
p.special { color: red; }
p #special { color: red; }