To make the text inside <li> elements with the class "active" green, which CSS property would you use?
<li>
li, .active { color: green; }
li.active { color: green; }
.active li { color: green; }
li .active { color: green; }