right now i have this
$(".container a").css("color","#ffffff");
which styles all links inside ".container" white. then i have a div structured like this
<div class="container">
<div class="header">
<a href=">
</div>
</div>
the links inside that second div only turn white in Firefox. Is there a way to fix the line of js without adding another line for the header div? Something that selects all the children?