I have a textarea inside a div. The div css sets the color, but the textarea doesn't seem to react to that.
Is this the correct behavior ? how can I get the color property to apply from the div to the textarea ?
.c1 {
color: red;
}
<div class="c1">
An now for something completly different :<br/>
<textarea>
the news : spam spam spam spam spam
</textarea>
</div>