To make the text of elements with the class "warning" inside a <div> yellow, which CSS property would you apply?
<div>
div .warning { color: yellow; }
.warning div { color: yellow; }
div #warning { color: yellow; }
div, .warning { color: yellow; }