I have a link inside a DIV. How can I change the color of this link inside this div. This code does not seem to work
<style type="text/css">
.someDiv
{
font-size:14px;
color:#c62e16;
}
</style>
<div id="someDiv">
<a href="http://www.some.com" id="someLink">SOne Text</a>
</div>
Thanks.